UserProfileName
public struct UserProfileName
A structure for the user’s name.
-
The family/last name of the user.
Declaration
Swift
public var familyName: String
-
The given/first name of the user.
Declaration
Swift
public var givenName: String
-
The middle name of the user.
Declaration
Swift
public var middleName: String
-
Initialize a
UserProfileName
instance.Declaration
Swift
public init(familyName: String, givenName: String, middleName: String)
Parameters
familyName
The family/last name of the user.
givenName
The given/first name of the user.
middleName
The middle name of the user.