Sha256: 5cc236fa5a8aeee682fc25ba288401b19f96390d531d8d086cd20b9d9e7926f3

Contents?: true

Size: 1.43 KB

Versions: 5

Compression:

Stored size: 1.43 KB

Contents

# VeloPayments::UserDetailsUpdateRequest

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**primary_contact_number** | **String** | The main contact number for the user  | [optional] 
**secondary_contact_number** | **String** | The secondary contact number for the user  | [optional] 
**first_name** | **String** |  | [optional] 
**last_name** | **String** |  | [optional] 
**email** | **String** | the email address of the user | [optional] 
**sms_number** | **String** | The phone number of a device that the user can receive sms messages on  | [optional] 
**mfa_type** | [**MFAType**](MFAType.md) |  | [optional] 
**verification_code** | **String** | <p>Optional property that MUST be suppied when manually verifying a user</p> <p>The user's smsNumber is registered via a separate endpoint and an OTP sent to them</p>  | [optional] 

## Code Sample

```ruby
require 'VeloPayments'

instance = VeloPayments::UserDetailsUpdateRequest.new(primary_contact_number: 11235555555,
                                 secondary_contact_number: 11235555550,
                                 first_name: John,
                                 last_name: Doe,
                                 email: foo@example.com,
                                 sms_number: 11235555555,
                                 mfa_type: null,
                                 verification_code: 123456)
```


Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
velopayments-2.23.78.beta1 docs/UserDetailsUpdateRequest.md
velopayments-2.20.119 docs/UserDetailsUpdateRequest.md
velopayments-2.20.29.beta1 docs/UserDetailsUpdateRequest.md
velopayments-2.19.116 docs/UserDetailsUpdateRequest.md
velopayments-2.19.40.beta1 docs/UserDetailsUpdateRequest.md