import { ZeniAPIResponse } from '../../../responsePayload'; import { InvoicingSetupIntent } from './customerPaymentMethodState'; interface PlaidLinkTokenPayload { link_token: string; } interface SavePaymentMethodPayload { payment_method_last4: string; payment_method_type: string; } interface SendPaymentLinkPayload { email: string; magic_link_url: string; } export type InvoicingSetupIntentResponse = ZeniAPIResponse; export type PlaidLinkTokenResponse = ZeniAPIResponse; export type SavePaymentMethodResponse = ZeniAPIResponse; export type SendPaymentLinkResponse = ZeniAPIResponse; export {};