# The Customer Evaluation object

### The Customer Evaluation object

```json
{
  "id": "cuseval_123456789",
  "object": "radar.customer_evaluation",
  "event_type": "registration",
  "livemode": true,
  "created_at": 1715769600,
  "customer": "cus_123456789",
  "events": null,
  "signals": {
    "multi_accounting": {
      "score": 50.1,
      "evaluated_at": 1715769600,
      "risk_level": null
    }
  }
}
```

## Attributes

- `id` (string)
  Unique identifier for the object.

- `object` (string)
  String representing the object’s type. Objects of the same type share the same value.

- `created_at` (timestamp)
  Time at which the object was created. Measured in seconds since the Unix epoch.

- `customer` (string, nullable)
  The ID of the Customer to associate with this CustomerEvaluation.

- `event_type` (enum)
  The type of evaluation event.
Possible enum values:
  - `login`
    A customer login event.

  - `registration`
    A customer registration event.

- [`events`](https://docs.stripe.com/api/radar/customer-evaluation/object.md?query=events) (array of objects, nullable)
  A list of events that have been reported on this customer evaluation.

- `livemode` (boolean)
  If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.

- [`signals`](https://docs.stripe.com/api/radar/customer-evaluation/object.md?query=signals) (object, nullable)
  A hash of signal objects providing Radar’s evaluation of the customer.

- `status` (string, nullable)
  The outcome status reported for this evaluation: allowed, restricted, or blocked.
