houdini/docs/event_definitions/Nonprofit/Transaction/StripeTransaction/Refund.ts
Eric Schultz 2c791b920c Add stripe_refund.* publishing
Co-authored-by: Clarissa Lima Borges <clarissa@commitchange.com>
2021-07-14 11:23:22 -05:00

14 lines
No EOL
598 B
TypeScript

// License: LGPL-3.0-or-later
import type { HoudiniEvent } from "../../../common";
import type { CommonStripeTransactionPayment } from '.';
import type { PaymentAsId } from "..";
export interface RefundAsId extends PaymentAsId {
object: 'stripe_transaction_refund';
}
export type Refund = CommonStripeTransactionPayment & RefundAsId;
export type RefundCreated = HoudiniEvent<'stripe_transaction_refund.created', Refund>;
export type RefundUpdated = HoudiniEvent<'stripe_transaction_refund.updated', Refund>;
export type RefundDeleted = HoudiniEvent<'stripe_transaction_refund.deleted', Refund>;