/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { CryptoPayoutDestination } from "./crypto-payout-destination";
import { Money } from "./money";
import { ToAmount } from "./to-amount";
import { TransferSourceWalletLocation } from "./transfer-source-wallet-location";
/**
 *
 * @export
 * @interface CryptoPayoutCreationRequest
 */
export interface CryptoPayoutCreationRequest {
    /**
     * Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests.
     * @type {string}
     * @memberof CryptoPayoutCreationRequest
     */
    idempotencyKey: string;
    /**
     *
     * @type {TransferSourceWalletLocation}
     * @memberof CryptoPayoutCreationRequest
     */
    source?: TransferSourceWalletLocation;
    /**
     *
     * @type {CryptoPayoutDestination}
     * @memberof CryptoPayoutCreationRequest
     */
    destination: CryptoPayoutDestination;
    /**
     *
     * @type {Money}
     * @memberof CryptoPayoutCreationRequest
     */
    amount: Money;
    /**
     *
     * @type {ToAmount}
     * @memberof CryptoPayoutCreationRequest
     */
    toAmount?: ToAmount;
}
