AdobeAuthUserProfile Class Reference
Inherits from | NSObject |
Declared in | AdobeAuthUserProfile.h |
Overview
AdobeAuthUserProfile contains the properties of the currently logged in user as obtained by calling [AdobeUXAuthManager sharedManager].userProfile.
Tasks
-
adobeID
property -
countryCode
property -
developerMode
property -
displayName
property -
email
property -
emailVerified
property -
firstName
property -
fullName
property -
isEnterpriseUser
property -
licenseStatus
property -
lastName
property -
preferredLanguages
property -
– description
-
– refreshWithCompletion:error:
Properties
adobeID
The user ID.
@property (nonatomic, readonly, strong) NSString *adobeID
Discussion
The user ID.
Declared In
AdobeAuthUserProfile.h
countryCode
The country code for the user.
@property (nonatomic, readonly, strong) NSString *countryCode
Discussion
The country code for the user.
Declared In
AdobeAuthUserProfile.h
developerMode
Whether the application key is in developer mode.
@property (nonatomic, readonly) BOOL developerMode
Discussion
Whether the application key is in developer mode.
Declared In
AdobeAuthUserProfile.h
displayName
The display name of the user.
@property (nonatomic, readonly, strong) NSString *displayName
Discussion
The display name of the user.
Declared In
AdobeAuthUserProfile.h
The email address of the user.
@property (nonatomic, readonly, strong) NSString *email
Discussion
The email address of the user.
Declared In
AdobeAuthUserProfile.h
emailVerified
Whether or not the email address has been verified.
@property (nonatomic, readonly) BOOL emailVerified
Discussion
Whether or not the email address has been verified.
Declared In
AdobeAuthUserProfile.h
firstName
The first name of the user.
@property (nonatomic, readonly, strong) NSString *firstName
Discussion
The first name of the user.
Declared In
AdobeAuthUserProfile.h
fullName
The full name of the user.
@property (nonatomic, readonly, strong) NSString *fullName
Discussion
The full name of the user.
Declared In
AdobeAuthUserProfile.h
isEnterpriseUser
Whether the user is for an enterprise user.
@property (nonatomic, readonly) BOOL isEnterpriseUser
Discussion
Whether the user is for an enterprise user.
Declared In
AdobeAuthUserProfile.h
lastName
The last name of the user.
@property (nonatomic, readonly, strong) NSString *lastName
Discussion
The last name of the user.
Declared In
AdobeAuthUserProfile.h
Instance Methods
description
The object in a readable format. Useful for debugging but should not be used publicly.
- (NSString *)description
Discussion
The object in a readable format. Useful for debugging but should not be used publicly.
Declared In
AdobeAuthUserProfile.h
refreshWithCompletion:error:
Refreshes the receiver, retrieving any updated values from the Creative Cloud.
- (void)refreshWithCompletion:(void ( ^ ) ( void ))completionBlock error:(void ( ^ ) ( NSError *error ))errorBlock
Parameters
- completionBlock
A block that is called once the receiver is successfully updated.
- errorBlock
An error block that is called if the requested update fails to succeed.
Discussion
Refreshes the receiver, retrieving any updated values from the Creative Cloud.
Note: In the event that the refresh operation fails, the receiver will retain its current state.
Declared In
AdobeAuthUserProfile.h