Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.55 KB

File metadata and controls

28 lines (22 loc) · 1.55 KB

Passbase::ProjectSettings

Properties

Name Type Description Notes
id String Unique ID of the project [optional]
slug String Slugs are meant to be a way to verify people just with the link [optional]
environment String [optional]
organization String Name of the organization that owns this project [optional]
customizations ProjectSettingsCustomizations [optional]
verification_steps Array<ProjectSettingsVerificationSteps> List of the steps through which the user must go through to complete their verification [optional]

Example

require 'passbase'

instance = Passbase::ProjectSettings.new(
  id: 00000000-0000-0000-0000-000000000000,
  slug: passbase-demo,
  environment: sandbox,
  organization: Passbase Inc.,
  customizations: null,
  verification_steps: [{&quot;step&quot;:&quot;email&quot;,&quot;resource_types&quot;:[&quot;EMAIL&quot;]},{&quot;step&quot;:&quot;liveness_check&quot;,&quot;resource_types&quot;:[&quot;FACE_VIDEO&quot;]},{&quot;step&quot;:&quot;country&quot;,&quot;resource_types&quot;:[&quot;de&quot;,&quot;us&quot;,&quot;gb&quot;,&quot;ca&quot;]},{&quot;step&quot;:&quot;identity_document_check&quot;,&quot;resource_types&quot;:[&quot;PASSPORT&quot;,&quot;DRIVERS_LICENSE&quot;]},{&quot;step&quot;:&quot;insurance_card_scan&quot;,&quot;resource_types&quot;:[&quot;HEALTH_INSURANCE_CARD&quot;]}]
)