# The IpAccessList object

Definition of an IP Access list

## Attributes

- `list_id` (string, uuid)
  Universally unique identifier (UUID) of the IP access list.
- `label` (string)
  Label for the IP access list. This **cannot** be empty.
  Example: `Office VPN`
- `ip_addresses` (array of string)
  Example: `192.168.100.0/22`
- `address_count` (int32)
  Total number of IP or CIDR values.
  Example: `2`
- `list_type` (string)
  Possible values:
  - `ALLOW`
  - `BLOCK`
- `created_at` (int64)
  Creation timestamp in milliseconds.
  Example: `1580265020299`
- `created_by` (int64)
  User ID of the user who created this list.
  Example: `202480738464078`
- `updated_at` (int64)
  Update timestamp in milliseconds.
  Example: `1580265020299`
- `updated_by` (int64)
  User ID of the user who updated this list.
  Example: `202480738464089`
- `enabled` (boolean)
  Specifies whether this IP access list is enabled.

## Example

```json
{
  "list_id": "string",
  "label": "Office VPN",
  "ip_addresses": [
    "192.168.100.0/22"
  ],
  "address_count": 2,
  "list_type": "ALLOW",
  "created_at": 1580265020299,
  "created_by": 202480738464078,
  "updated_at": 1580265020299,
  "updated_by": 202480738464089,
  "enabled": true
}
```


