docs/SoftDescriptor.md in first_data_gateway-1.7.1 vs docs/SoftDescriptor.md in first_data_gateway-1.8.0
- old
+ new
@@ -3,17 +3,21 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**dynamic_merchant_name** | **String** | Store \"doing-business-as\" name. |
+**customer_service_number** | **String** | Customer service phone number information that is passed to the issuer (it may appear on the cardholder’s statement) or if merchant wants to pass information that differs from the information stored on our master File. | [optional]
**mcc** | **String** | The 4-digit merchant category code (MCC). The merchant might be associated with multiple MCCs. In that case the MCC provided here will be the one that better describes the current transaction. | [optional]
+**dynamic_address** | [**Address**](Address.md) | | [optional]
## Code Sample
```ruby
require 'OpenapiClient'
instance = OpenapiClient::SoftDescriptor.new(dynamic_merchant_name: Merchant XYZ,
- mcc: 7311)
+ customer_service_number: 9973322990,
+ mcc: 7311,
+ dynamic_address: null)
```