docs/PayorV2.md in velopayments-2.14.90.pre.1 vs docs/PayorV2.md in velopayments-2.17.8.beta1
- old
+ new
@@ -2,27 +2,28 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**payor_id** | **String** | | [optional]
+**payor_id** | **String** | | [optional] [readonly]
**payor_name** | **String** | The name of the payor. |
-**address** | [**Address**](Address.md) | | [optional]
+**address** | [**PayorAddressV2**](PayorAddressV2.md) | | [optional]
**primary_contact_name** | **String** | Name of primary contact for the payor. | [optional]
**primary_contact_phone** | **String** | Primary contact phone number for the payor. | [optional]
**primary_contact_email** | **String** | Primary contact email for the payor. | [optional]
-**kyc_state** | **String** | The kyc state of the payor. | [optional]
+**kyc_state** | **String** | The kyc state of the payor. | [optional] [readonly]
**manual_lockout** | **Boolean** | Whether or not the payor has been manually locked by the backoffice. | [optional]
-**payee_grace_period_processing_enabled** | **Boolean** | Whether grace period processing is enabled. | [optional]
-**payee_grace_period_days** | **Integer** | The grace period for paying payees in days. | [optional]
+**payee_grace_period_processing_enabled** | **Boolean** | Whether grace period processing is enabled. | [optional] [readonly]
+**payee_grace_period_days** | **Integer** | The grace period for paying payees in days. | [optional] [readonly]
**collective_alias** | **String** | How the payor has chosen to refer to payees. | [optional]
**support_contact** | **String** | The payor’s support contact email address. | [optional]
**dba_name** | **String** | The payor’s 'Doing Business As' name. | [optional]
**allows_language_choice** | **Boolean** | Whether or not the payor allows language choice in the UI. | [optional]
-**reminder_emails_opt_out** | **Boolean** | Whether or not the payor has opted-out of reminder emails being sent. | [optional]
+**reminder_emails_opt_out** | **Boolean** | Whether or not the payor has opted-out of reminder emails being sent. | [optional] [readonly]
**language** | **String** | The payor’s language preference. Must be one of [EN, FR]. | [optional]
**includes_reports** | **Boolean** | | [optional]
+**max_master_payor_admins** | **Integer** | | [optional]
## Code Sample
```ruby
require 'VeloPayments'
@@ -41,9 +42,10 @@
support_contact: support@example.com,
dba_name: Some Biz,
allows_language_choice: null,
reminder_emails_opt_out: null,
language: EN,
- includes_reports: null)
+ includes_reports: null,
+ max_master_payor_admins: null)
```