docs/AVSResponse.md in first_data_gateway-1.6.0 vs docs/AVSResponse.md in first_data_gateway-1.7.0

- old
+ new

@@ -4,16 +4,18 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **street_match** | **String** | Response if street matches that on file. | [optional] **postal_code_match** | **String** | Response if postal code matches that on file. | [optional] +**association_avs_response** | **String** | The raw address verification response code returned by issuer. Please refer to response codes section in developer portal for more info. | [optional] ## Code Sample ```ruby require 'OpenapiClient' instance = OpenapiClient::AVSResponse.new(street_match: Y, - postal_code_match: N) + postal_code_match: N, + association_avs_response: Y) ```