/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { ReversalReason } from "./reversal-reason";
/**
 *
 * @export
 * @interface CancelCreationRequest
 */
export interface CancelCreationRequest {
    /**
     * Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests.
     * @type {string}
     * @memberof CancelCreationRequest
     */
    idempotencyKey: string;
    /**
     *
     * @type {ReversalReason}
     * @memberof CancelCreationRequest
     */
    reason?: ReversalReason;
}
