PhilippinesIDCardModel
A class derived from IDCardModel containing details specific to the Philippines ID card document
Last updated
A class derived from IDCardModel containing details specific to the Philippines ID card 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 UMID card document.
@objc override final public var fullName: String? { get }
Overridden from IDCardModel
Example: "ANNA MARIA ERIKSSON"
The given name, middle name and surname of the subject as found on the ID card document.
@objc final public var surname: String? { get }
Example: "ERIKSSON"
The surname of the subject as found on the ID card document.
@objc final public var givenName: String? { get }
Example: "ANNA"
The given name of the subject as found on the ID card document.
@objc final public var middleName: String? { get }
Value can be nil
Example: "MARIA"
The middle name of the subject as found on the ID card 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 ID card document.
@objc final public var barcode: String? { get }
Value can be nil
The barcode as found on the ID card 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
String?
The common reference number of the subject as found on the UMID card document.
String?
The given name, middle name and surname of the subject as found on the ID card document.
String?
The surname of the subject as found on the ID card document.
String?
The given name of the subject as found on the ID card document.
String?
The middle name of the subject as found on the ID card document.
String?
The address of the subject as found on the ID card document.
String?
The barcode as found on the ID card document.
Signature
Return Type
Description
Void
Encodes the model using the encoder provided. Used to convert the model to JSON.