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

com.mailersend.sms.webhooks.SmsWebhookList Maven / Gradle / Ivy

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

import com.google.gson.annotations.SerializedName;
import com.mailersend.sdk.util.PaginatedResponse;

/**
 * 

SmsWebhookList class.

* * @author mailersend * @version $Id: $Id */ public class SmsWebhookList extends PaginatedResponse { @SerializedName("data") public SmsWebhook[] webhooks; /** *

postDeserialize.

*/ protected void postDeserialize() { for (SmsWebhook webhook : webhooks) { webhook.postDeserialize(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy