@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
39 lines (38 loc) • 1.49 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 { Ptsv2payoutsOrderInformationAmountDetails } from './ptsv2payouts-order-information-amount-details';
import { Ptsv2payoutsOrderInformationBillTo } from './ptsv2payouts-order-information-bill-to';
/**
*
* @export
* @interface Ptsv2payoutsOrderInformation
*/
export interface Ptsv2payoutsOrderInformation {
/**
*
* @type {Ptsv2payoutsOrderInformationAmountDetails}
* @memberof Ptsv2payoutsOrderInformation
*/
amountDetails?: Ptsv2payoutsOrderInformationAmountDetails;
/**
*
* @type {Ptsv2payoutsOrderInformationBillTo}
* @memberof Ptsv2payoutsOrderInformation
*/
billTo?: Ptsv2payoutsOrderInformationBillTo;
/**
* #### Visa Platform Connect : This API will contain the Flag that specifies whether the payment is for the purchase of cryptocurrency. Additional values to add : This API will contain the Flag that specifies whether the payment is for the purchase of cryptocurrency. valid values are - Y/y, true - N/n, false
* @type {string}
* @memberof Ptsv2payoutsOrderInformation
*/
isCryptocurrencyPurchase?: string;
}