Railsr.Types.KycCheck (Railsr v1.0.0)

Copy Markdown View Source

Result of a single KYC check run.

Summary

Types

status()

@type status() :: :pending | :passed | :failed | :referred | :error

t()

@type t() :: %Railsr.Types.KycCheck{
  created_at: String.t() | nil,
  failure_reasons: list() | nil,
  kyc_check_id: String.t() | nil,
  provider: String.t() | nil,
  refer_reasons: list() | nil,
  status: String.t() | nil,
  updated_at: String.t() | nil
}