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

com.mailersend.sdk.templates.Template Maven / Gradle / Ivy

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

import com.google.gson.annotations.SerializedName;

/**
 * 

Template class.

* * @author mailersend * @version $Id: $Id */ public class Template { @SerializedName("id") public String id; @SerializedName("name") public String name; @SerializedName("type") public String type; @SerializedName("image_path") public String imagePath; @SerializedName("category") public TemplateCategory category; @SerializedName("domain") public TemplateDomain domain; @SerializedName("template_stats") public TemplateStats stats; /** * Is called to perform any actions after the deserialization of the response * Do not call directly */ protected void postDeserialize() { if (domain != null) { domain.postDeserialize(); } if (stats != null) { stats.postDeserialize(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy