com.mailgun.model.domains.DomainUnsubscribeConnectionSettingsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailgun-java Show documentation
Show all versions of mailgun-java Show documentation
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;
}