/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { transactionsActionsList } from "../funcs/transactionsActionsList.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Actions extends ClientSDK { /** * List transaction Flow rules * * @remarks * Retrieve the list of Flow rule actions that have been triggered for a transaction. */ async list( transactionId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions, ): Promise { return unwrapAsync(transactionsActionsList( this, transactionId, merchantAccountId, options, )); } }