UNPKG

@circle-fin/circle-sdk

Version:
41 lines (38 loc) 978 B
/* 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 { FiatMoneyUsd } from "./fiat-money-usd"; // May contain unused imports in some cases // @ts-ignore import { ReversalReason } from "./reversal-reason"; /** * * @export * @interface RefundCreationRequest */ export interface RefundCreationRequest { /** * Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests. * @type {string} * @memberof RefundCreationRequest */ idempotencyKey: string; /** * * @type {FiatMoneyUsd} * @memberof RefundCreationRequest */ amount: FiatMoneyUsd; /** * * @type {ReversalReason} * @memberof RefundCreationRequest */ reason?: ReversalReason; }