import { DigitalPayVoid } from "./DigitalPayVoidRequest";
/**
* The JSON request structure of the Openpay Voids endpoint.
*
* @category Model
*/
export interface OpenPayVoidRequest {
/** A merchant application specific reference number. This number should uniquely identify the transaction in the merchant’s system. */
clientReference: string;
/** The merchant order number of the transaction. */
orderNumber?: string;
/** List of voided payments */
voids: DigitalPayVoid[];
}
Source