com.mailersend.sms.webhooks.SingleSmsWebhookResponse 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.MailerSendResponse;
class SingleSmsWebhookResponse extends MailerSendResponse {
@SerializedName("data")
public SmsWebhook webhook;
}