UNPKG

@paciolan/cybersource-sdk

Version:
43 lines (42 loc) 2.06 kB
/** * 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 PushFunds201ResponseOrderInformationAmountDetails */ export interface PushFunds201ResponseOrderInformationAmountDetails { /** * Grand total for the order. This value cannot be negative. You can include a decimal point (.), but no other special characters. CyberSource truncates the amount to the correct number of decimal places. Note For Visa Platform Conenct, FDC Compass, and Chase Paymentech processors, the maximum length for this field is 12 numbers. Processor Amount Ranges: Visa Platform Connect: .01-9999999999.99 Mastercard Send: 1-9999999999.99 FDC Compass: .01- 9999999999.994 Chase Paymentech: .01-9999999999.99 * @type {string} * @memberof PushFunds201ResponseOrderInformationAmountDetails */ totalAmount?: string; /** * Currency used for the order. Use the three-character ISO Standard Currency Codes * @type {string} * @memberof PushFunds201ResponseOrderInformationAmountDetails */ currency: string; /** * 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 PushFunds201ResponseOrderInformationAmountDetails */ 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 PushFunds201ResponseOrderInformationAmountDetails */ settlementCurrency?: string; }