TransactionResultFailed Interface
The result of the RunTransaction API when it failed.
This API is provided as an alpha preview and may change without notice.
To use, import via fluid-framework/alpha
.
For more information about our API support guarantees, see here.
Signature
export interface TransactionResultFailed<TFailureValue>
Type Parameters
Parameter | Description |
---|---|
TFailureValue |
Properties
Property | Alerts | Type | Description |
---|---|---|---|
success | Alpha |
false | Indicates that the transaction failed. |
value | Alpha |
TFailureValue | The user defined value when the transaction failed. |
Property Details
success
Indicates that the transaction failed.
This API is provided as an alpha preview and may change without notice.
For more information about our API support guarantees, see here.
Signature
success: false;
Type: false
value
The user defined value when the transaction failed.
This API is provided as an alpha preview and may change without notice.
For more information about our API support guarantees, see here.
Signature
value: TFailureValue;
Type: TFailureValue