pub trait DelayWatcherProxyInterface: Send + Sync {
type WatchDelayResponseFut: Future<Output = Result<DelayWatcherWatchDelayResponse, Error>> + Send;
// Required method
fn watch_delay(
&self,
payload: &DelayWatcherWatchDelayRequest,
) -> Self::WatchDelayResponseFut;
}