/**
 * CyberSource Merged Spec
 * All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
 *
 * OpenAPI spec version: 0.0.1
 *
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */
import { CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies } from './card-processing-config-features-card-not-present-payouts-currencies';
/**
 *
 * @export
 * @interface CardProcessingConfigFeaturesCardNotPresentPayouts
 */
export interface CardProcessingConfigFeaturesCardNotPresentPayouts {
    /**
     * Applicable for VPC processors.
     * @type {string}
     * @memberof CardProcessingConfigFeaturesCardNotPresentPayouts
     */
    reimbursementCode?: string;
    /**
     * This code identifies the financial institution acting as the acquirer of this customer transaction. The acquirer is the member or system user that signed the merchant. This number is usually a Visa-assigned. Applicable for VPC processors.
     * @type {string}
     * @memberof CardProcessingConfigFeaturesCardNotPresentPayouts
     */
    acquiringInstitutionId?: string;
    /**
     * Transaction type. List of supported identifiers documented in the Developer Guide. Applicable for GPX (gpx) and VPC processors.
     * @type {string}
     * @memberof CardProcessingConfigFeaturesCardNotPresentPayouts
     */
    businessApplicationId?: string;
    /**
     * Applicable for GPX (gpx) and VPC processors.
     * @type {string}
     * @memberof CardProcessingConfigFeaturesCardNotPresentPayouts
     */
    financialInstitutionId?: string;
    /**
     * Routing Number to identify banks within the United States. Applicable for VPC processors.
     * @type {string}
     * @memberof CardProcessingConfigFeaturesCardNotPresentPayouts
     */
    merchantAbaNumber?: string;
    /**
     * Order of the networks in which Visa should make routing decisions. Applicable for VPC processors.
     * @type {string}
     * @memberof CardProcessingConfigFeaturesCardNotPresentPayouts
     */
    networkOrder?: string;
    /**
     * Three-character [ISO 4217 ALPHA-3 Standard Currency Codes.](http://apps.cybersource.com/library/documentation/sbc/quickref/currencies.pdf)
     * @type {{ [key: string]: CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies; }}
     * @memberof CardProcessingConfigFeaturesCardNotPresentPayouts
     */
    currencies?: {
        [key: string]: CardProcessingConfigFeaturesCardNotPresentPayoutsCurrencies;
    };
    /**
     * Merchant ID assigned by an acquirer or a processor. Should not be overridden by any other party.  Validation details (for selected processors)...  <table> <thead><tr><th>Processor</th><th>Acceptance Type</th><th>Required</th><th>Min. Length</th><th>Max. Length</th><th>Regex</th></tr></thead> <tr><td>Barclays</td><td>cnp, hybrid</td><td>No</td><td>1</td><td>11</td><td>^[0-9]+$</td></tr> </table>
     * @type {string}
     * @memberof CardProcessingConfigFeaturesCardNotPresentPayouts
     */
    merchantId?: string;
    /**
     * The 'Terminal Id' aka TID, is an identifier used for with your payments processor. Depending on the processor and payment acceptance type this may also be the default Terminal ID used for Card Present and Virtual Terminal transactions.  Validation details (for selected processors)...  <table> <thead><tr><th>Processor</th><th>Acceptance Type</th><th>Required</th><th>Min. Length</th><th>Max. Length</th><th>Regex</th></tr></thead> <tr><td>Barclays</td><td>cnp, hybrid</td><td>No</td><td>1</td><td>255</td><td>^[0-9:&#92;-]+$</td></tr> </table>
     * @type {string}
     * @memberof CardProcessingConfigFeaturesCardNotPresentPayouts
     */
    terminalId?: string;
}
