/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { FiatMoneyUsd } from "./fiat-money-usd";
/**
 *
 * @export
 * @interface CaptureCreationRequest
 */
export interface CaptureCreationRequest {
    /**
     * Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests.
     * @type {string}
     * @memberof CaptureCreationRequest
     */
    idempotencyKey: string;
    /**
     *
     * @type {FiatMoneyUsd}
     * @memberof CaptureCreationRequest
     */
    amount?: FiatMoneyUsd;
}
