CommandRequest

public class CommandRequest : CustomStringConvertible

Command request to send to card.

  • Command request.

    Declaration

    Swift

    public init()
  • Defines that shall be used for the card command..

    Declaration

    Swift

    public var cardReader: CCardReader
  • Specifies the order of a CommandRequest in the CommandRequestList.

    Declaration

    Swift

    public var order: Int
  • Command to send to card.

    Declaration

    Swift

    public var cardCommand: String
  • If a dialog shall be shown in case of a positive command response.

    Declaration

    Swift

    public var positiveResource: CResourceId?
  • If a dialog shall be shown in case of a negative command response.

    Declaration

    Swift

    public var negativeResource: CResourceId?
  • If a dialog shall be shown during the execution of a command.

    Declaration

    Swift

    public var executionResource: CResourceId?
  • If a dialog shall be sown before sending a card command.

    Declaration

    Swift

    public var preResource: CResourceId?
  • Possible positive answers for a CommandRequest.

    Declaration

    Swift

    public var positiveAnswers: [String]
  • Textual representation.

    Declaration

    Swift

    public var description: String { get }