@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
49 lines (48 loc) • 2.46 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.
*/
/**
*
* @export
* @interface PtsV2CapturesRefundsPost201ResponseOrderInformationAmountDetails
*/
export interface PtsV2CapturesRefundsPost201ResponseOrderInformationAmountDetails {
/**
* This is a multicurrency field. It contains the transaction amount (field 4), converted to the Currency used to bill the cardholder's account. This field is returned for OCT transactions.
* @type {string}
* @memberof PtsV2CapturesRefundsPost201ResponseOrderInformationAmountDetails
*/
settlementAmount?: string;
/**
* This is a multicurrency-only field. It contains a 3-digit numeric code that identifies the currency used by the issuer to bill the cardholder's account. This field is returned for OCT transactions.
* @type {string}
* @memberof PtsV2CapturesRefundsPost201ResponseOrderInformationAmountDetails
*/
settlementCurrency?: string;
/**
* Exchange rate returned by the DCC service. Includes a decimal point and a maximum of 4 decimal places. For details, see `exchange_rate` request-level field description in the [Dynamic Currency Conversion For First Data Using the SCMP API](http://apps.cybersource.com/library/documentation/dev_guides/DCC_FirstData_SCMP/DCC_FirstData_SCMP_API.pdf)
* @type {string}
* @memberof PtsV2CapturesRefundsPost201ResponseOrderInformationAmountDetails
*/
exchangeRate?: string;
/**
* Set this field to the converted amount that was returned by the DCC provider. For processor-specific information, see the `foreign_amount` field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/)
* @type {string}
* @memberof PtsV2CapturesRefundsPost201ResponseOrderInformationAmountDetails
*/
foreignAmount?: string;
/**
* Set this field to the converted amount that was returned by the DCC provider.
* @type {string}
* @memberof PtsV2CapturesRefundsPost201ResponseOrderInformationAmountDetails
*/
foreignCurrency?: string;
}