VerificationParameters
public struct VerificationParameters : Codable
Parameters to verification some information about financial report for Datalink.
-
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?
-
Creates an instance from the specified parameters.
Declaration
Swift
public init(name: String?, phoneNumbers: [String]?, address: String?, email: String?)
Parameters
name
Provide a ‘Name’ for the account holder to verify agains AIS data.
phoneNumbers
Provide an array of ‘phone numbers’ for the account holder to verify agains AIS data.
address
Provide an ‘address’ for the account holder to verify agains AIS data.
email
Provide an ‘email address’ for the account holder to verify agains AIS data.