UNPKG

@circle-fin/circle-sdk

Version:
33 lines (32 loc) 854 B
/** * 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"; 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; }