Name
public struct Name
The name object for the individual
-
The first name
Declaration
Swift
public let first: String? -
The middle name
Declaration
Swift
public let middle: String? -
The last name
Declaration
Swift
public let last: String? -
Creates a Name
Declaration
Swift
public init(first: String? = nil, last: String? = nil)Parameters
firstThe first name
lastThe last name
-
Creates a Name
Declaration
Swift
public init(first: String? = nil, middle: String? = nil, last: String? = nil)Parameters
firstThe first name
middleThe middle name
lastThe last name
View on GitHub
Name Structure Reference