@unchainedshop/plugins
Version:
Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters
14 lines (13 loc) • 375 B
TypeScript
import type { Response } from './Response.ts';
import type { Request } from './Request.ts';
export interface TransactionCancelInput extends Request {
TransactionReference: {
TransactionId: string;
OrderId?: string;
};
}
export interface TransactionCancelResponse extends Response {
TransactionId: string;
OrderId?: string;
Date: string;
}