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

com.geotab.model.entity.notification.TextTemplate Maven / Gradle / Ivy

package com.geotab.model.entity.notification;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;

/**
 * Custom text notifications.
 */
@Getter @Setter
@NoArgsConstructor
@SuperBuilder(builderMethodName = "textTemplateBuilder")
public class TextTemplate extends NotificationBinaryFile {

  /**
   * The text.
   */
  private String text;

  {
    setFileType(MediaFileType.TEXT_TEMPLATE);
    setType(NotificationBinaryFileType.TEXT_TEMPLATE);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy