@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
39 lines (38 loc) • 1.43 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 { Ptsv1pushfundstransferOrderInformationAmountDetails } from './ptsv1pushfundstransfer-order-information-amount-details';
import { Ptsv1pushfundstransferOrderInformationSurcharge } from './ptsv1pushfundstransfer-order-information-surcharge';
/**
*
* @export
* @interface Ptsv1pushfundstransferOrderInformation
*/
export interface Ptsv1pushfundstransferOrderInformation {
/**
*
* @type {Ptsv1pushfundstransferOrderInformationAmountDetails}
* @memberof Ptsv1pushfundstransferOrderInformation
*/
amountDetails: Ptsv1pushfundstransferOrderInformationAmountDetails;
/**
* This indicates that the funds transfer is for a crypto currency transaction. Optional Y/y, true N/n, false
* @type {string}
* @memberof Ptsv1pushfundstransferOrderInformation
*/
isCryptocurrencyPurchase?: string;
/**
*
* @type {Ptsv1pushfundstransferOrderInformationSurcharge}
* @memberof Ptsv1pushfundstransferOrderInformation
*/
surcharge?: Ptsv1pushfundstransferOrderInformationSurcharge;
}