# ChatUserMentionedChatUserNotificationData

Sent when a user mentions a user in a message

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **string** |  | [default to undefined]
**channel_id** | **number** | The ID of the channel the mentioning message was sent. Deprecated: Use the channel property of this notification | [default to undefined]
**mentioned_user** | [**ChatUserResource**](ChatUserResource.md) |  | [default to undefined]
**message** | [**TextMessageResource**](TextMessageResource.md) |  | [default to undefined]

## Example

```typescript
import { ChatUserMentionedChatUserNotificationData } from 'chatkitty';

const instance: ChatUserMentionedChatUserNotificationData = {
    type,
    channel_id,
    mentioned_user,
    message,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
