This repository was archived by the owner on May 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bryant Luk
committed
Jan 11, 2016
1 parent
82d1d08
commit efcfab9
Showing
22 changed files
with
135 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
// | ||
// PayPalOAuthScopes.h | ||
// | ||
// Version 2.12.9 | ||
// Version 2.13.0 | ||
// | ||
// Copyright (c) 2014, PayPal | ||
// Copyright (c) 2014-2016 PayPal, Inc. All rights reserved. | ||
// All rights reserved. | ||
// | ||
|
||
// Currently available scope-values to which the user can be asked to consent. | ||
// @see https://developer.paypal.com/docs/integration/direct/identity/attributes/ for more details | ||
|
||
/// Authorize charges for future purchases paid for with PayPal. | ||
extern NSString *const kPayPalOAuth2ScopeFuturePayments; | ||
extern NSString * _Nonnull const kPayPalOAuth2ScopeFuturePayments; | ||
/// Share basic account information. | ||
extern NSString *const kPayPalOAuth2ScopeProfile; | ||
extern NSString * _Nonnull const kPayPalOAuth2ScopeProfile; | ||
/// Basic Authentication. | ||
extern NSString *const kPayPalOAuth2ScopeOpenId; | ||
extern NSString * _Nonnull const kPayPalOAuth2ScopeOpenId; | ||
/// Share your personal and account information. | ||
extern NSString *const kPayPalOAuth2ScopePayPalAttributes; | ||
extern NSString * _Nonnull const kPayPalOAuth2ScopePayPalAttributes; | ||
/// Share your email address. | ||
extern NSString *const kPayPalOAuth2ScopeEmail; | ||
extern NSString * _Nonnull const kPayPalOAuth2ScopeEmail; | ||
/// Share your account address. | ||
extern NSString *const kPayPalOAuth2ScopeAddress; | ||
extern NSString * _Nonnull const kPayPalOAuth2ScopeAddress; | ||
/// Share your phone number. | ||
extern NSString *const kPayPalOAuth2ScopePhone; | ||
extern NSString * _Nonnull const kPayPalOAuth2ScopePhone; | ||
|
Oops, something went wrong.