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

com.mailgun.model.templates.Template Maven / Gradle / Ivy

Go to download

The Mailgun SDK for Java enables Java developers to work with Mailgun API efficiently.

The newest version!
package com.mailgun.model.templates;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;

import java.time.ZonedDateTime;

import static com.mailgun.util.Constants.ENGLISH;
import static com.mailgun.util.Constants.RFC_2822_DATE_TIME_PATTERN_TIME_ZONE_NAME;

/**
 * 

* Template. *

* * @see Templates */ @Value @Jacksonized @Builder @JsonIgnoreProperties(ignoreUnknown = true) public class Template { /** *

* Template id. *

*/ String id; /** *

* Name of the template. *

*/ String name; /** *

* Template description. *

*/ String description; /** *

* Template creation time. *

* {@link ZonedDateTime} */ @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = RFC_2822_DATE_TIME_PATTERN_TIME_ZONE_NAME, locale = ENGLISH) ZonedDateTime createdAt; String createdBy; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy