/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CryptoRefundCreationRequestAmount } from "./crypto-refund-creation-request-amount"; import { CryptoRefundCreationRequestToAmount } from "./crypto-refund-creation-request-to-amount"; import { CryptoRefundDestination } from "./crypto-refund-destination"; /** * * @export * @interface CryptoRefundCreationRequest */ export interface CryptoRefundCreationRequest { /** * Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests. * @type {string} * @memberof CryptoRefundCreationRequest */ idempotencyKey: string; /** * * @type {CryptoRefundDestination} * @memberof CryptoRefundCreationRequest */ destination: CryptoRefundDestination; /** * * @type {CryptoRefundCreationRequestAmount} * @memberof CryptoRefundCreationRequest */ amount: CryptoRefundCreationRequestAmount; /** * * @type {CryptoRefundCreationRequestToAmount} * @memberof CryptoRefundCreationRequest */ toAmount: CryptoRefundCreationRequestToAmount; }