# DialogOptOutDecisionType

> Gives the user the option to stop the dialog box appearing again. This decision applies to the current user only.

## Definition

* **Type:** Enum
* **Namespace:** [UnityEditor](/engine/6000.7/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public enum DialogOptOutDecisionType
```

## Remarks

If a decision is set for both [DialogOptOutDecisionType.ForThisSession](/engine/6000.7/script-reference/unityeditor/dialogoptoutdecisiontype/forthissession.md) and [DialogOptOutDecisionType.ForThisUser](/engine/6000.7/script-reference/unityeditor/dialogoptoutdecisiontype/forthisuser.md), Unity uses the decision for [DialogOptOutDecisionType.ForThisUser](/engine/6000.7/script-reference/unityeditor/dialogoptoutdecisiontype/forthisuser.md). Note that [DialogOptOutDecisionType.ForThisMachine](/engine/6000.7/script-reference/unityeditor/dialogoptoutdecisiontype/forthismachine.md) is for backwards compatibility only, use [DialogOptOutDecisionType.ForThisUser](/engine/6000.7/script-reference/unityeditor/dialogoptoutdecisiontype/forthisuser.md) instead.

Users can reset their choices by clicking the reset button in Editor Preferences.

## Fields

| Value                                                                                                    | Description                                                                                                                                              |
| -------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [ForThisMachine](/engine/6000.7/script-reference/unityeditor/dialogoptoutdecisiontype/forthismachine.md) | Gives the user the option to stop the dialog box appearing again. This decision affects the current user on the current machine.                         |
| [ForThisSession](/engine/6000.7/script-reference/unityeditor/dialogoptoutdecisiontype/forthissession.md) | Gives the user the option to stop the dialog box appearing again. This decision affects the current user for the duration of the current Editor session. |
| [ForThisUser](/engine/6000.7/script-reference/unityeditor/dialogoptoutdecisiontype/forthisuser.md)       | Gives the user the option to stop the dialog box appearing again. This decision affects the current user only.                                           |
