SyncteraRubySdk::Detail

Properties

Name Type Description Notes
description String Human-readable description explaining the individual check. [optional]
label String Human-readable grouping describing the aspect of the customer's identity examined by this check. [optional]
result String The result of the individual check. One of the following: * `PASS` – the check passed contributing to a positive outcome (or accepted verification result). * `WARN` – the results of the check were inconclusive and might require review. * `FAIL` – the check failed and might result in a failing outcome (or rejected verification_result). [optional]
vendor_code String Machine-readable description of the individual check. This field contains vendor-specific terms and may not be populated in all cases. [optional]

Example

require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::Detail.new(
  description: Email address is correlated with the individual's name,
  label: Email,
  result: PASS,
  vendor_code: R940
)