@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
37 lines (36 loc) • 1.85 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 PtsV2PaymentsPost201ResponseRiskInformationScore
*/
export interface PtsV2PaymentsPost201ResponseRiskInformationScore {
/**
*
* @type {Array<string>}
* @memberof PtsV2PaymentsPost201ResponseRiskInformationScore
*/
factorCodes?: Array<string>;
/**
* Name of the score model used for the transaction. If you did not include a custom model in your request, this field contains the name of CyberSource's default model. For all possible values, see the `score_model_used` field description in the _Decision Manager Using the SCMP API Developer Guide_ on the [CyberSource Business Center.](https://ebc2.cybersource.com/ebc2/) Click **Decision Manager** > **Documentation** > **Guides** > _Decision Manager Using the SCMP API Developer Guide_ (PDF link).
* @type {string}
* @memberof PtsV2PaymentsPost201ResponseRiskInformationScore
*/
modelUsed?: string;
/**
* Total score calculated for this order. The value cannot be negative. For all possible values, see the `score_score_result` field description in the _Decision Manager Using the SCMP API Developer Guide_ on the [CyberSource Business Center.](https://ebc2.cybersource.com/ebc2/) Click **Decision Manager** > **Documentation** > **Guides** > _Decision Manager Using the SCMP API Developer Guide_ (PDF link).
* @type {string}
* @memberof PtsV2PaymentsPost201ResponseRiskInformationScore
*/
result?: string;
}