2e8821efdf
Co-authored-by: Clarissa Lima Borges <clarissa@commitchange.com>
11 lines
No EOL
513 B
TypeScript
11 lines
No EOL
513 B
TypeScript
// License: LGPL-3.0-or-later
|
|
import type { HoudiniEvent } from "../../../common";
|
|
import type { CommonOfflineTransactionPayment } from '.';
|
|
|
|
export interface Refund extends CommonOfflineTransactionPayment {
|
|
object: 'offline_transaction_refund';
|
|
}
|
|
|
|
export type RefundCreated = HoudiniEvent<'offline_transaction_refund.created', Refund>;
|
|
export type RefundUpdated = HoudiniEvent<'offline_transaction_refund.updated', Refund>;
|
|
export type RefundDeleted = HoudiniEvent<'offline_transaction_refund.deleted', Refund>; |