hank
2019-01-22 bf63695cd124ba0c3127f4cc8aa99c737729dd1d
frameworks/FBSDKLoginKit.framework/Headers/FBSDKLoginManagerLoginResult.h
@@ -20,35 +20,40 @@
@class FBSDKAccessToken;
/*!
 @abstract Describes the result of a login attempt.
/**
  Describes the result of a login attempt.
 */
@interface FBSDKLoginManagerLoginResult : NSObject
/*!
 @abstract the access token.
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
/**
  the access token.
 */
@property (copy, nonatomic) FBSDKAccessToken *token;
/*!
 @abstract whether the login was cancelled by the user.
/**
  whether the login was cancelled by the user.
 */
@property (readonly, nonatomic) BOOL isCancelled;
/*!
 @abstract the set of permissions granted by the user in the associated request.
 @discussion inspect the token's permissions set for a complete list.
/**
  the set of permissions granted by the user in the associated request.
 inspect the token's permissions set for a complete list.
 */
@property (copy, nonatomic) NSSet *grantedPermissions;
/*!
 @abstract the set of permissions declined by the user in the associated request.
 @discussion inspect the token's permissions set for a complete list.
/**
  the set of permissions declined by the user in the associated request.
 inspect the token's permissions set for a complete list.
 */
@property (copy, nonatomic) NSSet *declinedPermissions;
/*!
 @abstract Initializes a new instance.
/**
  Initializes a new instance.
 @param token the access token
 @param isCancelled whether the login was cancelled by the user
 @param grantedPermissions the set of granted permissions