PhilippinesUnifiedMultipurposeIDModel
A class derived from DocumentModel containing details specific to the Philippines unified multipurpose ID document
Last updated
A class derived from DocumentModel containing details specific to the Philippines unified multipurpose ID document
Last updated
Only relevant details are shown, boilerplate or standard Swift generated code is omitted
@objc final public var surname: String? { get }
Example: "0123-4567890-1"
The common reference number of the subject as found on the document.
@objc final public var surname: String? { get }
Example: "DOE"
The surname of the subject as found on the document.
@objc final public var givenName: String? { get }
Example: "JOHN"
The given name of the subject as found on the document.
@objc final public var middleName: String? { get }
Value can be nil
because it is not included on all documents
Example: "MARTIN"
The middle name of the subject as found on the document.
@objc final public var sex:
Sex
{ get }
Example: Sex.Male
The sex of the subject as found on the document.
@objc final public var dateOfBirth: Date? { get }
Example: 1990/01/01
The date of birth of the subject as found on the document.
@objc final public var address: String? { get }
Example: "28 PAYAPA ST BAGONG DIWA STO CRISTOBAL CALOOCAN CITY METRO MANILA PHILIPPINES 1800"
The address of the subject as found on the document.
override final public func encode(to encoder: Encoder) throws
This function also calls its super function
Encodes the model using the encoder provided. Used to convert the model to JSON.
Name
Type
Description
Data source
String?
The common reference number of the subject as found on the document.
OCR
String?
The surname of the subject as found on the document.
OCR
String?
The given name of the subject as found on the document.
OCR
String?
The middle name of the subject as found on the document.
OCR
The sex of the subject as found on the document.
OCR
Date?
The date of birth of the subject as found on the document.
OCR
String?
The address of the subject as found on the document.
OCR
Signature
Return Type
Description
Void
Encodes the model using the encoder provided. Used to convert the model to JSON.