docs/CreateIndividual2.md in velopayments-2.23.78.beta1 vs docs/CreateIndividual2.md in velopayments-2.26.124.beta1

- old
+ new

@@ -1,21 +1,22 @@ # VeloPayments::CreateIndividual2 ## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**name** | [**CreateIndividual2Name**](CreateIndividual2Name.md) | | -**national_identification** | **String** | | [optional] -**date_of_birth** | **Date** | Must not be date in future. Example - 1970-05-20 | +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **name** | [**CreateIndividualName**](CreateIndividualName.md) | | | +| **national_identification** | **String** | | [optional] | +| **date_of_birth** | **Date** | Must not be date in future. Example - 1970-05-20 | | -## Code Sample +## Example ```ruby -require 'VeloPayments' +require 'velopayments' -instance = VeloPayments::CreateIndividual2.new(name: null, - national_identification: SA211123K, - date_of_birth: Wed May 20 00:00:00 GMT 1970) +instance = VeloPayments::CreateIndividual2.new( + name: null, + national_identification: SA211123K, + date_of_birth: Wed May 20 00:00:00 UTC 1970 +) ``` -