/* tslint:disable */ /* eslint-disable */ /** * cards * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The details of the card acceptor (merchant) in a transaction hold. */ export interface CardAcceptor { /** * The city in which the card acceptor has the business. */ city?: string; /** * The country in which the card acceptor has the business. */ country?: string; /** * The Merchant Category Code of the card acceptor. */ mcc?: number; /** * The name of the card acceptor. */ name?: string; /** * The state in which the card acceptor has the business. */ state?: string; /** * The street in which the card acceptor has the business. */ street?: string; /** * The ZIP code of the location in which the card acceptor has the business. */ zip?: string; }