UserProfile
public struct UserProfile : JSONParsable
The user profile data.
-
Declaration
Swift
public var givenName: String? -
Declaration
Swift
public var familyName: String? -
Declaration
Swift
public var displayName: String? -
Declaration
Swift
public var birthday: Birthdate? -
This is the email address that is marked as primary (there may or may not be one)
Declaration
Swift
public var primaryEmailAddress: EmailAddress? -
The email address associated with this user. For passwordless login this is generated for example.
Declaration
Swift
public var email: EmailAddress? -
The phone number associated with this user
Declaration
Swift
public var phoneNumber: PhoneNumber? -
Declaration
Swift
public init(givenName: String? = nil, familyName: String? = nil, displayName: String? = nil, birthday: Birthdate? = nil)
-
human-readable string representation (YAML)
Declaration
Swift
public var description: String { get }
View on GitHub
UserProfile Structure Reference