IdvMethod

public class IdvMethod : NSObject, Codable

IdvMethod defines the IDV method available to the end user

Version

Version 1.0

Since

Since 1.0
  • id

    The identifier of the IdvMethod

    Declaration

    Swift

    public var id: String?
  • A type of IdvMethod that user could select.

    Declaration

    Swift

    public var type: IdvType?
  • Only for IdvType.appToApp. It corresponds to the concatenation of the issuer application id and the intent handler. An information that could be displayed to the end user.

    Declaration

    Swift

    public var value: String?
  • Only for appToApp. It corresponds to the concatenation of the issuer application id and the intent handler.

    Declaration

    Swift

    public var source: String?
  • Only for appToApp. An opaque data that should be sent to the issuer application

    Declaration

    Swift

    public var requestPayload: String?
  • Declaration

    Swift

    public required init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws