docs/Contact.md in first_data_gateway-1.2.0 vs docs/Contact.md in first_data_gateway-1.3.0
- old
+ new
@@ -1,11 +1,23 @@
# OpenapiClient::Contact
## Properties
+
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**phone** | **String** | Primary phone number. | [optional]
**mobile_phone** | **String** | Mobile phone number. | [optional]
**fax** | **String** | Fax number. | [optional]
**email** | **String** | Email address. | [optional]
+
+## Code Sample
+
+```ruby
+require 'OpenapiClient'
+
+instance = OpenapiClient::Contact.new(phone: 5555555555,
+ mobile_phone: 5555555555,
+ fax: 5555555555,
+ email: john@test.com)
+```