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

com.mailersend.sdk.webhooks.WebhookResponse Maven / Gradle / Ivy

/*************************************************
 * MailerSend Java SDK
 * https://github.com/mailersend/mailersend-java
 * 
 * @author MailerSend 
 * https://mailersend.com
 **************************************************/
package com.mailersend.sdk.webhooks;

import com.google.gson.annotations.SerializedName;
import com.mailersend.sdk.MailerSendResponse;

class WebhookResponse extends MailerSendResponse {

    @SerializedName("data")
    public Webhook webhook;
    
    void postDeserialize() {
        
        if (webhook != null) {
            
            webhook.postDeserialize();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy