Components

public struct Components

An object that constructs a D1Task from its configurations.

Since

1.0.0
  • server URL String for D1 services

    Declaration

    Swift

    public var d1ServiceURLString: String?
  • Issuer Identifier provided by Onboarding Team

    Declaration

    Swift

    public var issuerID: String?
  • It is used to secure communication between Server and Client RSA Exponent value.

    Declaration

    Swift

    public var d1ServiceRSAExponent: Data?
  • It is used to secure communication between Server and Client RSA Modulus value.

    Declaration

    Swift

    public var d1ServiceRSAModulus: Data?
  • server URL String for Digital Card management.

    Declaration

    Swift

    public var digitalCardURLString: String?
  • Secure Log configuration

    Declaration

    Swift

    public var enableSecureLog: Bool
  • UI Window for authn operations with platform authenticator

    Declaration

    Swift

    public var keyWindow: UIWindow?
  • A D1Task instance that is derived from the configuration. This method should only be called after all the configurations are set.

    Declaration

    Swift

    public func task() -> D1Task

    Return Value

    D1Task instance.

  • Constructs an instance of Components

    Declaration

    Swift

    public init()