SecurityData

public struct SecurityData : Encodable

Child structure of CustomerEnrollBiometricsRequest, CustomerEnrollRequest, CustomerIdentifyRequest, CustomerLiveCheckRequest, CustomerValidateIdFaceMatchRequest, CustomerValidateIdRequest, and CustomerVerifyRequest.

Properties

  • Unique login ID provided through sign-up to utilize the API. Varies by environment sandbox vs. production

    Declaration

    Swift

    public var userName: String
  • Password provided through sign-up to utilize the API. Varies by environment sandbox vs. production

    Declaration

    Swift

    public var password: String
  • Unique identifier for the client, used to communicate with our server. Provided at signup to use the API. Varies by environment (sandbox vs. production)

    Declaration

    Swift

    public var merchantId: Int

Initialization

  • Designated initializer.

    Declaration

    Swift

    public init(userName: String, password: String, merchantId: Int)

    Parameters

    userName

    Unique login ID provided through sign-up to utilize the API. Varies by environment sandbox vs. production

    password

    Password provided through sign-up to utilize the API. Varies by environment sandbox vs. production

    merchantId

    Unique identifier for the client, used to communicate with our server. Provided at signup to use the API. Varies by environment (sandbox vs. production)