# CardAcceptor

The details of the card acceptor (merchant) in a transaction hold.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**city** | **string** | The city in which the card acceptor has the business. | [optional] [default to undefined]
**country** | **string** | The country in which the card acceptor has the business. | [optional] [default to undefined]
**mcc** | **number** | The Merchant Category Code of the card acceptor. | [optional] [default to undefined]
**name** | **string** | The name of the card acceptor. | [optional] [default to undefined]
**state** | **string** | The state in which the card acceptor has the business. | [optional] [default to undefined]
**street** | **string** | The street in which the card acceptor has the business. | [optional] [default to undefined]
**zip** | **string** | The ZIP code of the location in which the card acceptor has the business. | [optional] [default to undefined]

## Example

```typescript
import { CardAcceptor } from './api';

const instance: CardAcceptor = {
    city,
    country,
    mcc,
    name,
    state,
    street,
    zip,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
