commit | author | age
|
2e29a3
|
1 |
// swift-interface-format-version: 1.0 |
L |
2 |
// swift-compiler-version: Apple Swift version 5.4 (swiftlang-1205.0.26.9 clang-1205.0.19.55) |
|
3 |
// swift-module-flags: -target arm64-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name FBSDKCoreKit |
|
4 |
@_exported import FBSDKCoreKit |
|
5 |
import Foundation |
|
6 |
import Swift |
|
7 |
extension AccessToken { |
|
8 |
public var permissions: Swift.Set<FBSDKCoreKit.Permission> { |
|
9 |
get |
|
10 |
} |
|
11 |
public var declinedPermissions: Swift.Set<FBSDKCoreKit.Permission> { |
|
12 |
get |
|
13 |
} |
|
14 |
public var expiredPermissions: Swift.Set<FBSDKCoreKit.Permission> { |
|
15 |
get |
|
16 |
} |
|
17 |
public func hasGranted(_ permission: FBSDKCoreKit.Permission) -> Swift.Bool |
|
18 |
} |
|
19 |
public enum Permission : Swift.Hashable, Swift.ExpressibleByStringLiteral { |
|
20 |
case publicProfile |
|
21 |
case userFriends |
|
22 |
case email |
|
23 |
case userAboutMe |
|
24 |
case userActionsBooks |
|
25 |
case userActionsFitness |
|
26 |
case userActionsMusic |
|
27 |
case userActionsNews |
|
28 |
case userActionsVideo |
|
29 |
case userBirthday |
|
30 |
case userEducationHistory |
|
31 |
case userEvents |
|
32 |
case userGamesActivity |
|
33 |
case userGender |
|
34 |
case userHometown |
|
35 |
case userLikes |
|
36 |
case userLocation |
|
37 |
case userManagedGroups |
|
38 |
case userPhotos |
|
39 |
case userPosts |
|
40 |
case userRelationships |
|
41 |
case userRelationshipDetails |
|
42 |
case userReligionPolitics |
|
43 |
case userTaggedPlaces |
|
44 |
case userVideos |
|
45 |
case userWebsite |
|
46 |
case userWorkHistory |
|
47 |
case readCustomFriendlists |
|
48 |
case readInsights |
|
49 |
case readAudienceNetworkInsights |
|
50 |
case readPageMailboxes |
|
51 |
case pagesShowList |
|
52 |
case pagesManageCta |
|
53 |
case pagesManageInstantArticles |
|
54 |
case adsRead |
|
55 |
case custom(Swift.String) |
|
56 |
public init(stringLiteral value: Swift.String) |
|
57 |
public var name: Swift.String { |
|
58 |
get |
|
59 |
} |
|
60 |
public func hash(into hasher: inout Swift.Hasher) |
|
61 |
public static func == (a: FBSDKCoreKit.Permission, b: FBSDKCoreKit.Permission) -> Swift.Bool |
|
62 |
public typealias ExtendedGraphemeClusterLiteralType = Swift.String |
|
63 |
public typealias StringLiteralType = Swift.String |
|
64 |
public typealias UnicodeScalarLiteralType = Swift.String |
|
65 |
public var hashValue: Swift.Int { |
|
66 |
get |
|
67 |
} |
|
68 |
} |