Skip to main content

TransactionResultSuccess Interface

The result of the RunTransaction API when it was successful.

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 TransactionResultSuccess<TSuccessValue>

Type Parameters

Parameter Description
TSuccessValue

Properties

Property Alerts Type Description
success Alpha true Indicates that the transaction was successful.
value Alpha TSuccessValue The user defined value when the transaction was successful.

Property Details

success

Indicates that the transaction was successful.

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: true;

Type: true

value

The user defined value when the transaction was successful.

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: TSuccessValue;

Type: TSuccessValue