/**
 * 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 { PtsV2PaymentsPost201ResponseMerchantInformationMerchantDescriptor } from './pts-v2-payments-post201-response-merchant-information-merchant-descriptor';
/**
 *
 * @export
 * @interface PtsV2PaymentsPost201ResponseMerchantInformation
 */
export interface PtsV2PaymentsPost201ResponseMerchantInformation {
    /**
     * Use this field only if you are requesting payment with Payer Authentication serice together.  Your company's name as you want it to appear to the customer in the issuing bank's authentication form. This value overrides the value specified by your merchant bank.
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseMerchantInformation
     */
    merchantName?: string;
    /**
     *
     * @type {PtsV2PaymentsPost201ResponseMerchantInformationMerchantDescriptor}
     * @memberof PtsV2PaymentsPost201ResponseMerchantInformation
     */
    merchantDescriptor?: PtsV2PaymentsPost201ResponseMerchantInformationMerchantDescriptor;
    /**
     * URL for displaying payment results to the consumer (notifications) after the transaction is processed. Usually this URL belongs to merchant and its behavior is defined by merchant
     * @type {string}
     * @memberof PtsV2PaymentsPost201ResponseMerchantInformation
     */
    returnUrl?: string;
}
