pub trait NotificationBuilder<'a> {
    fn build(
        self,
        device_token: &'a str,
        options: NotificationOptions<'a>
    ) -> Payload<'a>; }

Required Methods§

Generates the request payload to be send with the Client.

Implementors§