# JokeFlags

Represents a Joke's flags.

|       **Attributes**      |
| :-----------------------: |
|      [`nsfw`](#nsfw)      |
| [`religious`](#religious) |
| [`political`](#political) |
|    [`racist`](#racist)    |
|    [`sexist`](#sexist)    |
|  [`explicit`](#explicit)  |

### `nsfw`

Determines if the joke is marked NSFW (Not safe for work) or not.

**Type:** [`bool`](https://www.w3schools.com/python/python_strings.asp)

### `religious`

Determines if the joke is marked religious or not.

**Type:** [`bool`](https://www.w3schools.com/python/python_strings.asp)

### `political`

Determines if the joke is marked political or not.

**Type:** [`bool`](https://www.w3schools.com/python/python_strings.asp)

### `racist`

Determines if the joke is marked racist or not.

**Type:** [`bool`](https://www.w3schools.com/python/python_strings.asp)

### `sexist`

Determines if the joke is marked sexist or not.

**Type:** [`bool`](https://www.w3schools.com/python/python_strings.asp)

### `explicit`

Determines if the joke is marked explicit or not.

**Type:** [`bool`](https://www.w3schools.com/python/python_strings.asp)
