Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Latest commit

 

History

History
28 lines (22 loc) · 709 Bytes

KycRequest.md

File metadata and controls

28 lines (22 loc) · 709 Bytes

Marqeta::KycRequest

Properties

Name Type Description Notes
notes String [optional]
token String [optional]
user_token String Required if 'business_token' is null [optional]
business_token String Required if 'user_token' is null [optional]
manual_override Boolean [optional][default to false]
reference_id String [optional]

Example

require 'marqeta'

instance = Marqeta::KycRequest.new(
  notes: null,
  token: null,
  user_token: null,
  business_token: null,
  manual_override: null,
  reference_id: null
)