UNPKG

@circle-fin/circle-sdk

Version:
50 lines (47 loc) 1.45 kB
/* tslint:disable */ /* eslint-disable */ /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import { CryptoRefundCreationRequestAmount } from "./crypto-refund-creation-request-amount"; // May contain unused imports in some cases // @ts-ignore import { CryptoRefundCreationRequestToAmount } from "./crypto-refund-creation-request-to-amount"; // May contain unused imports in some cases // @ts-ignore 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; }