Sha256: d3b6e942b8936f97211f6db5c184a6e6e63f4606fbfda52071592d719ec96f4d
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
# Passbase::User ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **email** | **String** | Email with which the user was created | [optional] **identity_access_token** | **String** | Access token in the shape of a JsonWebToken used as a Bearer token when submitting identity data | [optional] **required_steps** | [**Array<ProjectSettingsVerificationSteps>**](ProjectSettingsVerificationSteps.md) | List of the steps through which the user must go through to complete their verification | [optional] ## Code Sample ```ruby require 'Passbase' instance = Passbase::User.new(email: jessie@example.com, identity_access_token: eyJhbGciOiJIUzI1NiIsI..., required_steps: [{"type":"email","document_types":["EMAIL"]},{"type":"liveness_check","document_types":["FACE_VIDEO"]},{"type":"country","document_types":["COUNTRY"]},{"type":"identity_document_check","document_types":["PASSPORT","DRIVERS_LICENSE"]},{"type":"insurance_card_scan","document_types":["HEALTH_INSURANCE_CARD"]}]) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
passbase-1.0.0 | docs/User.md |