CommandResponse
public class CommandResponse : CustomStringConvertible
Command response to send to card.
-
Command response.
Declaration
Swift
public init(order: Int, responseType: CResponseType, cardCommand: String, uid: String?, atr: String?)
-
Specifies the order of a CommandResponse in the CommandResponseList.
Declaration
Swift
public private(set) var order: Int
-
Defines the outcome type of the command response.
Declaration
Swift
public private(set) var responseType: CResponseType
-
Response received from card.
Declaration
Swift
public private(set) var cardCommand: String
-
UID of the card.
Declaration
Swift
public private(set) var uid: String?
-
Answer to reset information received from the card.
Declaration
Swift
public private(set) var atr: String?
-
Textual representation.
Declaration
Swift
public var description: String { get }