docs/ContactResponseFields.md in messente_api-1.4.0 vs docs/ContactResponseFields.md in messente_api-2.1.0

- old
+ new

@@ -1,37 +1,38 @@ # MessenteApi::ContactResponseFields ## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**phone_number** | **String** | Phone number in e.164 format | [optional] -**email** | **String** | The email of the contact | [optional] -**first_name** | **String** | The first name of the contact | [optional] -**last_name** | **String** | The last name of the contact | [optional] -**company** | **String** | The company of the contact | [optional] -**title** | **String** | The title of the contact | [optional] -**custom** | **String** | The first custom field | [optional] -**custom2** | **String** | The second custom field | [optional] -**custom3** | **String** | The third custom field | [optional] -**custom4** | **String** | The fourth custom field | [optional] -**scheduled_deletion_date** | **Date** | The date in ISO 8601 format, YYYY-MM-DD, on which the contact is going to be deleted because it has not belonged to a group for 30 days | [optional] +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **phone_number** | **String** | Phone number in e.164 format | [optional] | +| **email** | **String** | The email of the contact | [optional] | +| **first_name** | **String** | The first name of the contact | [optional] | +| **last_name** | **String** | The last name of the contact | [optional] | +| **company** | **String** | The company of the contact | [optional] | +| **title** | **String** | The title of the contact | [optional] | +| **custom** | **String** | The first custom field | [optional] | +| **custom2** | **String** | The second custom field | [optional] | +| **custom3** | **String** | The third custom field | [optional] | +| **custom4** | **String** | The fourth custom field | [optional] | +| **scheduled_deletion_date** | **Date** | The date in ISO 8601 format, YYYY-MM-DD, on which the contact is going to be deleted because it has not belonged to a group for 30 days | [optional] | -## Code Sample +## Example ```ruby -require 'MessenteApi' +require 'messente_api' -instance = MessenteApi::ContactResponseFields.new(phone_number: null, - email: null, - first_name: null, - last_name: null, - company: null, - title: null, - custom: null, - custom2: null, - custom3: null, - custom4: null, - scheduled_deletion_date: null) +instance = MessenteApi::ContactResponseFields.new( + phone_number: null, + email: null, + first_name: null, + last_name: null, + company: null, + title: null, + custom: null, + custom2: null, + custom3: null, + custom4: null, + scheduled_deletion_date: null +) ``` -