UNPKG

@paciolan/cybersource-sdk

Version:
46 lines (45 loc) 1.64 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. */ import { Ptsv2paymentsRiskInformationAuxiliaryData } from './ptsv2payments-risk-information-auxiliary-data'; import { Ptsv2paymentsRiskInformationBuyerHistory } from './ptsv2payments-risk-information-buyer-history'; import { Ptsv2paymentsRiskInformationProfile } from './ptsv2payments-risk-information-profile'; /** * * @export * @interface Riskv1decisionsRiskInformation */ export interface Riskv1decisionsRiskInformation { /** * * @type {Ptsv2paymentsRiskInformationProfile} * @memberof Riskv1decisionsRiskInformation */ profile?: Ptsv2paymentsRiskInformationProfile; /** * Specifies one of the following types of events: - login - account_creation - account_update For regular payment transactions, do not send this field. * @type {string} * @memberof Riskv1decisionsRiskInformation */ eventType?: string; /** * * @type {Ptsv2paymentsRiskInformationBuyerHistory} * @memberof Riskv1decisionsRiskInformation */ buyerHistory?: Ptsv2paymentsRiskInformationBuyerHistory; /** * * @type {Array<Ptsv2paymentsRiskInformationAuxiliaryData>} * @memberof Riskv1decisionsRiskInformation */ auxiliaryData?: Array<Ptsv2paymentsRiskInformationAuxiliaryData>; }