com.mailersend.sdk.templates.TemplateItem Maven / Gradle / Ivy
/*************************************************
* MailerSend Java SDK
* https://github.com/mailersend/mailersend-java
*
* @author MailerSend
* https://mailersend.com
**************************************************/
package com.mailersend.sdk.templates;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
import java.time.temporal.TemporalAccessor;
import java.util.Date;
import com.google.gson.annotations.SerializedName;
/**
* TemplateItem class.
*
* @author mailersend
* @version $Id: $Id
*/
public class TemplateItem {
@SerializedName("id")
public String id;
@SerializedName("name")
public String name;
@SerializedName("type")
public String type;
@SerializedName("image_path")
public String imagePath;
public Date createdAt;
@SerializedName("created_at")
private String createdAtStr;
/**
* Is called to perform any actions after the deserialization of the response
* Do not call directly
*/
protected void postDeserialize() {
parseDates();
}
/**
* Parses the string dates from the response into java.util.Date objects
*/
protected void parseDates() {
TemporalAccessor ta;
Instant instant;
if (createdAtStr != null && !createdAtStr.isBlank()) {
ta = DateTimeFormatter.ISO_INSTANT.parse(createdAtStr);
instant = Instant.from(ta);
createdAt = Date.from(instant);
}
}
}