pub trait NotificationRegistrationProxyInterface: Send + Sync {
type NewEventReportResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn new_event_report(
&self,
payload: &NotificationRegistrationNewEventReportRequest,
) -> Self::NewEventReportResponseFut;
}