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

com.mailersend.sdk.sms.inboundroutes.SmsInboundRouteList Maven / Gradle / Ivy

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

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

/**
 * 

SmsInboundRouteList class.

* * @author mailersend * @version $Id: $Id */ public class SmsInboundRouteList extends PaginatedResponse { @SerializedName("data") public SmsInboundRoute[] routes; /** *

postDeserialize.

*/ public void postDeserialize() { for (SmsInboundRoute route : routes) { route.postDeserialize(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy