@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
61 lines (60 loc) • 2.17 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 { Ptsv2paymentsidreversalsClientReferenceInformation } from './ptsv2paymentsidreversals-client-reference-information';
import { Ptsv2paymentsidvoidsAgreementInformation } from './ptsv2paymentsidvoids-agreement-information';
import { Ptsv2paymentsidvoidsMerchantInformation } from './ptsv2paymentsidvoids-merchant-information';
import { Ptsv2paymentsidvoidsOrderInformation } from './ptsv2paymentsidvoids-order-information';
import { Ptsv2paymentsidvoidsPaymentInformation } from './ptsv2paymentsidvoids-payment-information';
import { Ptsv2paymentsidvoidsProcessingInformation } from './ptsv2paymentsidvoids-processing-information';
/**
*
* @export
* @interface IdVoidsBody
*/
export interface IdVoidsBody {
/**
*
* @type {Ptsv2paymentsidreversalsClientReferenceInformation}
* @memberof IdVoidsBody
*/
clientReferenceInformation?: Ptsv2paymentsidreversalsClientReferenceInformation;
/**
*
* @type {Ptsv2paymentsidvoidsPaymentInformation}
* @memberof IdVoidsBody
*/
paymentInformation?: Ptsv2paymentsidvoidsPaymentInformation;
/**
*
* @type {Ptsv2paymentsidvoidsOrderInformation}
* @memberof IdVoidsBody
*/
orderInformation?: Ptsv2paymentsidvoidsOrderInformation;
/**
*
* @type {Ptsv2paymentsidvoidsAgreementInformation}
* @memberof IdVoidsBody
*/
agreementInformation?: Ptsv2paymentsidvoidsAgreementInformation;
/**
*
* @type {Ptsv2paymentsidvoidsMerchantInformation}
* @memberof IdVoidsBody
*/
merchantInformation?: Ptsv2paymentsidvoidsMerchantInformation;
/**
*
* @type {Ptsv2paymentsidvoidsProcessingInformation}
* @memberof IdVoidsBody
*/
processingInformation?: Ptsv2paymentsidvoidsProcessingInformation;
}