// This file was auto-generated by Fern from our API Definition.

/**
 * @example
 * ```ts
 * {
 *     idempotencyKey: "8e03978e-40d5-43e8-bc93-6894a57f9324",
 *     transferId: "transfer_af2937b0-9846-4fe7-bfe9-ccc22d935114"
 * }
 * ```
 */
export interface ExecuteFundTransferRequest {
    /** The ID of the transfer. */
    transferId: string;
    /**
     * An optional string request header for making requests safely retryable.
     * When included, duplicate requests with the same key will return identical responses.
     * Refer to our [Idempotency docs](https://docs.cdp.coinbase.com/api-reference/v2/idempotency) for more information on using idempotency keys.
     */
    idempotencyKey?: string;
}
