# DialogOptOutDecisionType

> The type of opt-out decision a user can make.

## Definition

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

```csharp
public enum DialogOptOutDecisionType
```

## Remarks

This enum is used with [EditorUtility.DisplayDialog](/engine/6000.0/script-reference/unityeditor/editorutility/displaydialog.md) and specifies the nature of the opt-out decision Unity presents to the user. It stores the user's decision on how long they would like to opt out for: either just for the current instance, or for all time on the computer they are currently using.

## Fields

| Value                                                                                                    | Description                                                                                    |
| -------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
| [ForThisMachine](/engine/6000.0/script-reference/unityeditor/dialogoptoutdecisiontype/forthismachine.md) | The decision to opt out of seeing a dialog box for all time on the user's current machine.     |
| [ForThisSession](/engine/6000.0/script-reference/unityeditor/dialogoptoutdecisiontype/forthissession.md) | The decision to opt out of seeing a dialog box for the duration of the current Editor session. |
