VerificationParameters

public struct VerificationParameters : Codable
  • Provide a ‘Name’ for the account holder to verify agains AIS data.

    Declaration

    Swift

    public let name: String?
  • Provide an array of ‘phone numbers’ for the account holder to verify agains AIS data.

    Declaration

    Swift

    public let phoneNumbers: [String]?
  • Provide an ‘address’ for the account holder to verify agains AIS data.

    Declaration

    Swift

    public let address: String?
  • Provide an ‘email address’ for the account holder to verify agains AIS data.

    Declaration

    Swift

    public let email: String?
  • Declaration

    Swift

    public init(name: String?,
                phoneNumbers: [String]?,
                address: String?,
                email: String?)