Class ActionInspector
The state of the selected action for inspection.
Implements
Inherited Members
Namespace: Unity.AppUI.Redux.DevTools
Assembly: Unity.AppUI.Redux.dll
Syntax
[Serializable]
public record ActionInspector : IEquatable<ActionInspector>
Fields
isPayloadVisible
Whether the action payload is visible in the inspector.
Declaration
public bool isPayloadVisible
Field Value
Type | Description |
---|---|
bool |
isStackTraceVisible
Whether the action stack trace is visible.
Declaration
public bool isStackTraceVisible
Field Value
Type | Description |
---|---|
bool |
searchFilter
The search filter for the action list.
Declaration
public string searchFilter
Field Value
Type | Description |
---|---|
string |
selectedActionId
The ID of the selected action.
Declaration
public Optional<int> selectedActionId
Field Value
Type | Description |
---|---|
Optional<int> |
selectedTab
The selected tab in the action inspector.
Declaration
public string selectedTab
Field Value
Type | Description |
---|---|
string |