pub trait PaymentEvent: DeserializeOwned {
    type EventType: ToString;

    const PATH: &'static str;
}

Required Associated Types§

Required Associated Constants§

source

const PATH: &'static str

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl PaymentEvent for DebitNoteEvent

source§

const PATH: &'static str = "debitNoteEvents"

§

type EventType = DebitNoteEventType

source§

impl PaymentEvent for InvoiceEvent

source§

const PATH: &'static str = "invoiceEvents"

§

type EventType = InvoiceEventType

Implementors§