Passbase::ProjectSettings
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]
require 'passbase'
instance = Passbase ::ProjectSettings . new (
id : 00000000 -0000 -0000 -0000 -000000000000 ,
slug : passbase -demo ,
environment : sandbox ,
organization : Passbase Inc . ,
customizations : null ,
verification_steps : [ { " ; step " ; :" ; email " ; , " ; resource_types " ; :[ " ; EMAIL " ; ] } , { " ; step " ; :" ; liveness_check " ; , " ; resource_types " ; :[ " ; FACE_VIDEO " ; ] } , { " ; step " ; :" ; country " ; , " ; resource_types " ; :[ " ; de " ; , " ; us " ; , " ; gb " ; , " ; ca " ; ] } , { " ; step " ; :" ; identity_document_check " ; , " ; resource_types " ; :[ " ; PASSPORT " ; , " ; DRIVERS_LICENSE " ; ] } , { " ; step " ; :" ; insurance_card_scan " ; , " ; resource_types " ; :[ " ; HEALTH_INSURANCE_CARD " ; ] } ]
)