Package | com.myflashlab.air.extensions.firebase.auth |
Class | public class UserInfo |
Inheritance | UserInfo Object |
Property | Defined By | ||
---|---|---|---|
displayName : String [read-only] Returns the user's display name, if available. | UserInfo | ||
email : String [read-only]
Returns the email address corresponding to the user's account in the specified provider, if available. | UserInfo | ||
isEmailVerified : Boolean [read-only]
(Android only) Returns true if the user's email is verified. | UserInfo | ||
phoneNumber : String [read-only]
Returns the phone number corresponding to the user's account, if available, or null if none exists. | UserInfo | ||
photoUrl : String [read-only] Returns a Uri to the user's profile picture, if available. | UserInfo | ||
providerId : String [read-only] Returns the unique identifier of the provider type that this instance corresponds to. | UserInfo | ||
userId : String [read-only]
Returns a user identifier as specified by the authentication provider. | UserInfo |
displayName | property |
displayName:String
[read-only] Returns the user's display name, if available.
public function get displayName():String
property |
email:String
[read-only] Returns the email address corresponding to the user's account in the specified provider, if available. Some authentication providers, like Twitter, do not contain an email address. Others, like Facebook Login, contain it optionally.
public function get email():String
isEmailVerified | property |
isEmailVerified:Boolean
[read-only] (Android only) Returns true if the user's email is verified. This property does not work on the iOS side as it's not yet available on Firebase SDK to begin with!
public function get isEmailVerified():Boolean
phoneNumber | property |
phoneNumber:String
[read-only] Returns the phone number corresponding to the user's account, if available, or null if none exists.
public function get phoneNumber():String
photoUrl | property |
photoUrl:String
[read-only] Returns a Uri to the user's profile picture, if available.
public function get photoUrl():String
providerId | property |
providerId:String
[read-only] Returns the unique identifier of the provider type that this instance corresponds to.
public function get providerId():String
userId | property |
userId:String
[read-only] Returns a user identifier as specified by the authentication provider. For example, if this object corresponds to a Google user, returns a Google user ID.
public function get userId():String