INDLEntries
public class INDLEntries : NSObject
INDLEntriesは、マイナ運転免許証の「免許情報記録」に対応するクラスです。
-
インスタンスの説明を返します
Declaration
Swift
override public var description: String { get } -
符号化データを返します
Declaration
Swift
@objc public var encoded: Data { get } -
免許証の色区分を返します
Declaration
Swift
@objc public var colorClass: String? { get } -
有効期間の末日を返します
Declaration
Swift
@objc public var expireDate: DLDate? { get } -
免許の条件のリストを返します
Declaration
Swift
@objc public var conditions: [String] { get } -
免許証の番号を返します
Declaration
Swift
@objc public var licenseNumber: String? { get } -
免許の種類をリストで返します
Declaration
Swift
@objc public var categories: [INDLCategory] { get } -
タグを指定して免許の種類を返します
Declaration
Swift
@objc public func getCategory(_ tag: Int) -> INDLCategory?Parameters
tagタグ
Return Value
免許の年月日
-
顔写真を返します
Declaration
Swift
@objc public var photo: INDLPhoto? { get }