@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
43 lines (42 loc) • 2.33 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.
*/
/**
* Details for marking the transaction.
* @export
* @interface Riskv1decisionsidmarkingRiskInformationMarkingDetails
*/
export interface Riskv1decisionsidmarkingRiskInformationMarkingDetails {
/**
* Notes or details that explain the reasons for marking the transaction as suspect or otherwise.
* @type {string}
* @memberof Riskv1decisionsidmarkingRiskInformationMarkingDetails
*/
notes?: string;
/**
* Reason for marking the transaction as suspect or otherwise. This field can contain one of the following values: - `fraud_chargeback:` You have received a fraud-related chargeback for the transaction. - `non_fraud_chargeback:` You have received a non-fraudulent chargeback for the transaction. - `suspected:` You believe that you will probably receive a chargeback for the transaction. - `creditback:` You issued a refund to the customer to avoid a chargeback for the transaction.
* @type {string}
* @memberof Riskv1decisionsidmarkingRiskInformationMarkingDetails
*/
reason?: string;
/**
* This field can contain one or more of the following values. When you specify more than one value, separate them with commas (,). - `account_key_hash` - `customer_account_id` - `customer_email` - `customer_ipaddress` - `customer_phone` - `device_fingerprint` - `ship_address` If no value is specified, `account_key_hash`, `customer_email`, and `ship_address` are used by default. Note `account_key_hash` adds the field that contains the card number (`customer_cc_number`).
* @type {Array<string>}
* @memberof Riskv1decisionsidmarkingRiskInformationMarkingDetails
*/
fieldsIncluded?: Array<string>;
/**
* This field can contain one of the following values: - add: Mark as Suspect. - clear: Clear Mark as Suspect. - hide: Remove from history.
* @type {string}
* @memberof Riskv1decisionsidmarkingRiskInformationMarkingDetails
*/
action?: string;
}