Fraud Check Completed

v0.0.1
eventsproto iconProtobuf

Emitted when a fraud check has been completed for a transaction

View docs
1syntax = "proto3";
2
3package com.example.frauddetection;
4
5message FraudCheckCompleted {
6  string transactionId = 1;
7  string paymentId = 2;
8  int32 riskScore = 3;
9  string decision = 4;
10  repeated string reasons = 5;
11  double confidence = 6;
12  string timestamp = 7;
13}
14
15message FraudCheckCompletedEvent {
16  FraudCheckCompleted fraudCheckCompleted = 1;
17}
18