2021-04-07 21:43:58 +00:00
|
|
|
// License: LGPL-3.0-or-later
|
|
|
|
import type { HoudiniEvent } from "../../../common";
|
|
|
|
import type { CommonOfflineTransactionPayment } from '.';
|
2021-05-05 22:11:35 +00:00
|
|
|
import type { PaymentAsId } from "..";
|
2021-04-07 21:43:58 +00:00
|
|
|
|
2021-05-05 22:11:35 +00:00
|
|
|
|
|
|
|
export interface DisputeAsId extends PaymentAsId {
|
2021-04-07 21:43:58 +00:00
|
|
|
object: 'offline_transaction_dispute';
|
|
|
|
}
|
2021-05-05 22:11:35 +00:00
|
|
|
export type Dispute = CommonOfflineTransactionPayment & DisputeAsId;
|
2021-04-07 21:43:58 +00:00
|
|
|
|
|
|
|
export type DisputeCreated = HoudiniEvent<'offline_transaction_dispute.created', Dispute>;
|
|
|
|
export type DisputeUpdated = HoudiniEvent<'offline_transaction_dispute.updated', Dispute>;
|
|
|
|
export type DisputeDeleted = HoudiniEvent<'offline_transaction_dispute.deleted', Dispute>;
|