@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
47 lines (46 loc) • 1.52 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 { Ptsv2paymentsClientReferenceInformation } from './ptsv2payments-client-reference-information';
import { Ptsv2paymentsidvoidsOrderInformation } from './ptsv2paymentsidvoids-order-information';
import { Ptsv2paymentsidvoidsPaymentInformation } from './ptsv2paymentsidvoids-payment-information';
import { Ptsv2voidsProcessingInformation } from './ptsv2voids-processing-information';
/**
*
* @export
* @interface V2VoidsBody
*/
export interface V2VoidsBody {
/**
*
* @type {Ptsv2paymentsClientReferenceInformation}
* @memberof V2VoidsBody
*/
clientReferenceInformation?: Ptsv2paymentsClientReferenceInformation;
/**
*
* @type {Ptsv2paymentsidvoidsPaymentInformation}
* @memberof V2VoidsBody
*/
paymentInformation?: Ptsv2paymentsidvoidsPaymentInformation;
/**
*
* @type {Ptsv2paymentsidvoidsOrderInformation}
* @memberof V2VoidsBody
*/
orderInformation?: Ptsv2paymentsidvoidsOrderInformation;
/**
*
* @type {Ptsv2voidsProcessingInformation}
* @memberof V2VoidsBody
*/
processingInformation?: Ptsv2voidsProcessingInformation;
}