Class Meta<TArg>
The metadata of the thunk.
Implements
IEquatable<Meta<TArg>>
Inherited Members
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public record Meta<TArg> : IEquatable<Meta<TArg>>
Type Parameters
| Name | Description |
|---|---|
| TArg | The type of the argument to pass to the thunk. |
Constructors
Meta(ThunkStatus)
The metadata of the thunk.
Declaration
public Meta(ThunkStatus thunkStatus)
Parameters
| Type | Name | Description |
|---|---|---|
| ThunkStatus | thunkStatus | The status of the thunk. |
Properties
arg
The argument passed to the thunk.
Declaration
public TArg arg { get; }
Property Value
| Type | Description |
|---|---|
| TArg |
requestId
The request ID of the thunk.
Declaration
public string requestId { get; }
Property Value
| Type | Description |
|---|---|
| string |
thunkStatus
The status of the thunk.
Declaration
public ThunkStatus thunkStatus { get; }
Property Value
| Type | Description |
|---|---|
| ThunkStatus |