@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
47 lines (46 loc) • 1.6 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 { PushFunds201ResponseLinksCustomer } from './push-funds201-response-links-customer';
import { PushFunds201ResponseLinksInstrumentIdentifier } from './push-funds201-response-links-instrument-identifier';
import { PushFunds201ResponseLinksPaymentInstrument } from './push-funds201-response-links-payment-instrument';
import { PushFunds201ResponseLinksSelf } from './push-funds201-response-links-self';
/**
*
* @export
* @interface PushFunds201ResponseLinks
*/
export interface PushFunds201ResponseLinks {
/**
*
* @type {PushFunds201ResponseLinksSelf}
* @memberof PushFunds201ResponseLinks
*/
self?: PushFunds201ResponseLinksSelf;
/**
*
* @type {PushFunds201ResponseLinksCustomer}
* @memberof PushFunds201ResponseLinks
*/
customer?: PushFunds201ResponseLinksCustomer;
/**
*
* @type {PushFunds201ResponseLinksPaymentInstrument}
* @memberof PushFunds201ResponseLinks
*/
paymentInstrument?: PushFunds201ResponseLinksPaymentInstrument;
/**
*
* @type {PushFunds201ResponseLinksInstrumentIdentifier}
* @memberof PushFunds201ResponseLinks
*/
instrumentIdentifier?: PushFunds201ResponseLinksInstrumentIdentifier;
}