@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
55 lines (54 loc) • 2.27 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 PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails
*/
export interface PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails {
/**
* Loyalty points total balance before redemption. For Example: Points, such as 100
* @type {string}
* @memberof PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails
*/
pointsBeforeRedemption?: string;
/**
* The total value of loyalty points before redemption in the default currency. Max characters is 12 excluding the \".\" symbol For Example: Points, such as 20.00
* @type {string}
* @memberof PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails
*/
pointsValueBeforeRedemption?: string;
/**
* Number of loyalty points that were redeemed. For Example: Points, such as 100
* @type {string}
* @memberof PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails
*/
pointsRedeemed?: string;
/**
* The value of the loyalty points that were redeemed in the default currency. Max characters is 12 excluding the \".\" symbol For Example: Points, such as 100.00
* @type {string}
* @memberof PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails
*/
pointsValueRedeemed?: string;
/**
* Loyalty Points remaining total balance after redemption. For Example: Points, such as 20.00
* @type {string}
* @memberof PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails
*/
pointsAfterRedemption?: string;
/**
* The value of the remaining loyalty points after redumption in the default currency. Max characters is 12 excluding the \".\" symbol For Example: Points, such as 20.00
* @type {string}
* @memberof PtsV2PaymentsPost201ResponseOrderInformationRewardPointsDetails
*/
pointsValueAfterRedemption?: string;
}