CredentialsExchanging

Objective-C

@protocol CredentialsExchanging

-(void) exchangeEmail:(NSString *)email
             password:(NSString *)password
           completion:(CredentialsExchangeCompletionBlock)completion;

-(void) validatedTokenWithForcedRefresh:(BOOL)forceRefresh
                             completion:(CredentialsExchangeCompletionBlock)completion;


-(void) signOut;

-(nullable NSString *) username;
-(nullable NSString *) password;
-(nullable NSString *) jwtToken;        // For migration to new credentials storage; may not be valid

@end

Swift

protocol CredentialsExchanging

Undocumented