# Carrier

**Carrier** is an object representing a mobile carrier.

```typescript
{
  name: string(),
  mcc: string(),
  mnc: string(),
  ...approvable
}
```

## Attributes

* `name`  <mark style="color:blue;">string</mark>  The name of the carrier.
* `mcc`  <mark style="color:blue;">string</mark>  The Mobile Country Code of the carrier.
* `mnc`  <mark style="color:blue;">string</mark>  The Mobile Network Code identifying the carrier.

### Approvable

When embedded into an [Identity](https://dfend.gitbook.io/documentation/developer-api/types/identity), this object is extended by the [Approvable](https://dfend.gitbook.io/documentation/developer-api/types/approvable) fields.
