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

io.falu.models.messages.MessageSourceTemplate Maven / Gradle / Ivy

The newest version!
package io.falu.models.messages;

import lombok.Data;
import lombok.Getter;
import lombok.NoArgsConstructor;

/**
 * Information about the template used (or to be used) to send a message.
 */
@Data
@Getter
@NoArgsConstructor
public class MessageSourceTemplate {
    /**
     * Unique identifier of the template used.
     */
    private String id;

    /**
     * Alias of the template used.
     */
    private String alias;

    /**
     * Model applied when rending the template.
     */
    private Object model;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy