All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sendgrid.helpers.eventwebhook.EventWebhookHeader Maven / Gradle / Ivy

Go to download

This Java module allows you to quickly and easily send emails through Twilio SendGrid using Java.

There is a newer version: 5.0.0-rc.1
Show newest version
package com.sendgrid.helpers.eventwebhook;

/**
 * This enum lists headers that get posted to the webhook. Read the docs for
 * more details: https://sendgrid.com/docs/for-developers/tracking-events/event.
 */
public enum EventWebhookHeader {
    SIGNATURE("X-Twilio-Email-Event-Webhook-Signature"), TIMESTAMP("X-Twilio-Email-Event-Webhook-Timestamp");

    public final String name;

    EventWebhookHeader(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy