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

com.mailgun.model.domains.DomainUnsubscribeConnectionSettingsRequest 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.domains;

import feign.form.FormProperty;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;

@Getter
@ToString
@EqualsAndHashCode
@Builder
public class DomainUnsubscribeConnectionSettingsRequest {

    /**
     * 

* Active status * true or false *

*/ Boolean active; /** *

* Custom HTML version of unsubscribe footer. *

*/ @FormProperty("html_footer") String htmlFooter; /** *

* Custom text version of unsubscribe footer. *

* *

* Mailgun can automatically provide an unsubscribe footer in each email you send and also provides you with several unsubscribe variables. * You can customize your unsubscribe footer by editing the settings in the Control Panel. *

* * @see Tracking Unsubscribes */ @FormProperty("text_footer") String textFooter; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy