mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
21 lines
424 B
TypeScript
21 lines
424 B
TypeScript
export interface StripePaymentLinkCreatedEventPayload {
|
|
tenantId: number;
|
|
paymentLinkId: string;
|
|
saleInvoiceId: number;
|
|
stripeIntegrationId: number;
|
|
}
|
|
|
|
export interface StripeCheckoutSessionCompletedEventPayload {
|
|
event: any;
|
|
}
|
|
|
|
export interface StripeInvoiceCheckoutSessionPOJO {
|
|
sessionId: string;
|
|
publishableKey: string;
|
|
redirectTo: string;
|
|
}
|
|
|
|
export interface StripeWebhookEventPayload {
|
|
event: any;
|
|
}
|