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

com.mailersend.sdk.inboundroutes.InboundRouteBuilderBody Maven / Gradle / Ivy

package com.mailersend.sdk.inboundroutes;

import com.google.gson.annotations.SerializedName;

/**
 * 

InboundRouteBuilderBody class.

* * @author mailersend * @version $Id: $Id */ public class InboundRouteBuilderBody { @SerializedName("domain_id") public String domainId; @SerializedName("name") public String name; @SerializedName("domain_enabled") public boolean domainEnabled; @SerializedName("inbound_domain") public String inboundDomain; @SerializedName("inbound_address") public String inboundAddress; @SerializedName("inbound_subdomain") public String inboundSubdomain; @SerializedName("match_filter") public MatchFilter matchFilter; @SerializedName("catch_filter") public CatchFilter catchFilter; @SerializedName("forwards") public Forward[] forwards; /** *

reset.

*/ public void reset() { domainId = null; name = null; domainEnabled = false; inboundDomain = null; inboundAddress = null; inboundSubdomain = null; matchFilter = null; catchFilter = null; forwards = null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy