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

com.mailgun.model.routes.Route Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.1.3
Show newest version
package com.mailgun.model.routes;

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

import java.time.ZonedDateTime;
import java.util.List;

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

/**
 * 

* Route. *

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

* Route id. *

*/ String id; /** *

* Integer: smaller number indicates higher priority. * Higher priority routes are handled first. *

*/ Integer priority; /** *

* Route description. *

*/ String description; /** *

* A filter expression. *

*/ String expression; /** *

* Route action. *

*/ List actions; /** *

* Route creation time. *

* {@link ZonedDateTime} */ @JsonFormat(pattern = RFC_2822_DATE_TIME_PATTERN_TIME_ZONE_NAME, locale = ENGLISH) @JsonProperty("created_at") ZonedDateTime createdAt; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy