@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
39 lines (38 loc) • 1.35 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 { Ptsv2paymentsProcessorInformationAuthorizationOptions } from './ptsv2payments-processor-information-authorization-options';
import { Ptsv2paymentsProcessorInformationReversal } from './ptsv2payments-processor-information-reversal';
/**
* Processor Information
* @export
* @interface Ptsv2paymentsProcessorInformation
*/
export interface Ptsv2paymentsProcessorInformation {
/**
* Token received in original session service.
* @type {string}
* @memberof Ptsv2paymentsProcessorInformation
*/
preApprovalToken?: string;
/**
*
* @type {Ptsv2paymentsProcessorInformationAuthorizationOptions}
* @memberof Ptsv2paymentsProcessorInformation
*/
authorizationOptions?: Ptsv2paymentsProcessorInformationAuthorizationOptions;
/**
*
* @type {Ptsv2paymentsProcessorInformationReversal}
* @memberof Ptsv2paymentsProcessorInformation
*/
reversal?: Ptsv2paymentsProcessorInformationReversal;
}