> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PartyChatTextReceivedOptions

> Flags describing the received text message in PartyChatTextReceivedStateChange.

Flags describing the received text message in PartyChatTextReceivedStateChange.

## Syntax

```cpp theme={null}
enum class PartyChatTextReceivedOptions    
{  
    None = 0x0,  
    FilteredOffensiveTerms = 0x1,  
    FilteredEntireMessage = 0x2,  
    FilteredDueToError = 0x4,  
}  
```

## Constants

| Constant               | Description                                                                                                                                                                                                                                                                                                                                                                |
| ---------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| None                   | No flags are specified.                                                                                                                                                                                                                                                                                                                                                    |
| FilteredOffensiveTerms | Offensive terms were found and replaced with asterisks.<br /><br /> This value is exclusive to FilteredEntireMessage and FilteredDueToError.                                                                                                                                                                                                                               |
| FilteredEntireMessage  | The incoming text chat was unable to filter specific terms, and the entire text has been replaced by asterisks.<br /><br /> This option occurs when the moderation service was not able to identify specific terms to filter, but has still identified the text as being offensive. <br /><br /> This value is exclusive to FilteredOffensiveTerms and FilteredDueToError. |
| FilteredDueToError     | The incoming text was unable to be filtered, and the entire text has been replaced by asterisks.<br /><br /> This value is exclusive to FilteredOffensiveTerms and FilteredEntireMessage.                                                                                                                                                                                  |

## Requirements

**Header:** Party.h

## See also

[Party members](/services/playfab/multiplayer/networking/reference/party_members)\
[PartyChatTextReceivedStateChange](/services/playfab/multiplayer/networking/reference/structs/partychattextreceivedstatechange)


## Related topics

- [PartyChatTextReceivedStateChange](/services/playfab/multiplayer/networking/reference/structs/partychattextreceivedstatechange.md)
- [Using text moderation](/services/playfab/community/voice-communications/concepts-text-moderation.md)
- [PlayFab Party Release Notes](/services/playfab/multiplayer/networking/release-notes.md)
- [Party C/C++ API overview](/services/playfab/multiplayer/networking/reference/party_members.md)
- [PartyTextChatOptions](/services/playfab/multiplayer/networking/reference/enums/partytextchatoptions.md)
