/**
 * Example:
 *
 * ```
 * {
 *     transactionId: 'some-tx-id'
 * }
 * ```
 *
 * To express values in a more concise way, you can have a look at the {@link ValueHelpers}.
 */
export interface SubmitAndWaitForTransactionIdResponse {
    /**
     * The id of the transaction that resulted from the submitted command.
     */
    transactionId: string;
}
