@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
50 lines (49 loc) • 1.65 kB
TypeScript
/**
* 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 { Ptsv2paymentsMerchantInformationMerchantDescriptor } from './ptsv2payments-merchant-information-merchant-descriptor';
/**
*
* @export
* @interface Ptsv2paymentreferencesMerchantInformation
*/
export interface Ptsv2paymentreferencesMerchantInformation {
/**
*
* @type {Ptsv2paymentsMerchantInformationMerchantDescriptor}
* @memberof Ptsv2paymentreferencesMerchantInformation
*/
merchantDescriptor?: Ptsv2paymentsMerchantInformationMerchantDescriptor;
/**
* customer would be redirected to this url based on the decision of the transaction
* @type {string}
* @memberof Ptsv2paymentreferencesMerchantInformation
*/
cancelUrl?: string;
/**
* customer would be redirected to this url based on the decision of the transaction
* @type {string}
* @memberof Ptsv2paymentreferencesMerchantInformation
*/
successUrl?: string;
/**
* customer would be redirected to this url based on the decision of the transaction
* @type {string}
* @memberof Ptsv2paymentreferencesMerchantInformation
*/
failureUrl?: string;
/**
* Free-form text field.
* @type {string}
* @memberof Ptsv2paymentreferencesMerchantInformation
*/
noteToBuyer?: string;
}