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
UserProfileNameinstance.Declaration
Swift
public init(familyName: String, givenName: String, middleName: String)Parameters
familyNameThe family/last name of the user.
givenNameThe given/first name of the user.
middleNameThe middle name of the user.
View on GitHub
UserProfileName Structure Reference