Birthdate
public enum Birthdate : CustomStringConvertible
Birthdate that can be full date or just month/day
-
The year, month and day are all valid
Declaration
Swift
case full(String)
-
Only month and day are valid
Declaration
Swift
case day(String)
-
Declaration
Swift
public var description: String { get }