> For the complete documentation index, see [llms.txt](https://dfend.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dfend.gitbook.io/documentation/developer-api/types/carrier.md).

# 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](/documentation/developer-api/types/identity.md), this object is extended by the [Approvable](/documentation/developer-api/types/approvable.md) fields.
