import type { WatchTowerWebPushKeys } from './WatchTowerRequest'; export interface AddToWatchTowerWebPushEcho { endpoint: string; keys: WatchTowerWebPushKeys; } export interface AddToWatchTowerResponseData { invoice: string; recipient_id: string; endpoint_url: string; fcmToken?: string; webPushSubscription?: AddToWatchTowerWebPushEcho; email?: string; expiry: number; } export interface AddToWatchTowerResponse { status: string; message: string; data: AddToWatchTowerResponseData; } //# sourceMappingURL=WatchTowerResponse.d.ts.map