/* tslint:disable */ /* eslint-disable */ /** * configuration/authorizationholds.yaml * 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. */ /** * Represents the authorization hold */ export interface AuthorizationHoldConfiguration { /** * The number of days until the expiration for the authorization hold. */ daysToExpiration: number; /** * The description of the authorization hold. */ description?: string; /** * The merchant category code (MCC) of the authorization hold. */ mcc: number; }