/**
 * 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 { Ptsv1pushfundstransferMerchantInformationMerchantDescriptor } from './ptsv1pushfundstransfer-merchant-information-merchant-descriptor';
/**
 *
 * @export
 * @interface Ptsv1pushfundstransferMerchantInformation
 */
export interface Ptsv1pushfundstransferMerchantInformation {
    /**
     * The value for this field is a four-digit number that the payment card industry uses to classify merchants into market segments. A payment card company assigned one or more of these values to your business when you started accepting the payment card company's cards. When you do not include this field in your request, CyberSource uses the value in your CyberSource account.  For processor-specific information, see the merchant_category_code field description in Credit Card Services Using the SCMP API.  Visa Platform Connect The value for this field corresponds to the following data in the TC 33 capture file5:  Record: CP01 TCR4 Position: 150-153 Field: Merchant Category Code
     * @type {number}
     * @memberof Ptsv1pushfundstransferMerchantInformation
     */
    categoryCode?: number;
    /**
     * Time that the transaction was submitted in local time. The time is in hhmmss format.
     * @type {string}
     * @memberof Ptsv1pushfundstransferMerchantInformation
     */
    submitLocalDateTime?: string;
    /**
     * Your government-assigned tax identification number.  Visa Platform Connect: max length is 20
     * @type {string}
     * @memberof Ptsv1pushfundstransferMerchantInformation
     */
    vatRegistrationNumber?: string;
    /**
     *
     * @type {Ptsv1pushfundstransferMerchantInformationMerchantDescriptor}
     * @memberof Ptsv1pushfundstransferMerchantInformation
     */
    merchantDescriptor?: Ptsv1pushfundstransferMerchantInformationMerchantDescriptor;
}
