# ProjectNotificationsSettings Object

## Description

Notification settings for a project.

## Properties

### accountNotifications

Indicates whether account-level notifications should be allowed or blocked for this project.

Type: `string`

Valid Values:

* `allow`
* `block`

### notifications

List of notifications for this project.

Type: Array of [ProjectNotification](https://docs.skeddly.com/data-types/projectnotification-object) objects

## Sample JSON

```javascript
{
    "accountNotifications": "allow",
    "notifications": [
        {
            "ProjectNotificationId": "pn-12345678",
            "createdDate": "2023-01-26T00:00:00Z",
            "lastModifiedDate": "2023-01-26T00:00:00Z",
            "lastModifiedBy": "u-12345678",
            
            "notificationMethod": "email",
            "notificationLevel": "errors-only",
            "emailSettings": {
                "emailAddresses": [
                    "user1@example.com",
                    "user2@example.com"
                ]
            }
        }
    ]
}
```
