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

com.greenapi.client.pkg.models.notifications.messages.quotedMessageData.TemplateMessageData Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package com.greenapi.client.pkg.models.notifications.messages.quotedMessageData;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.greenapi.client.pkg.models.TemplateButtons;
import lombok.*;
import lombok.experimental.SuperBuilder;

import java.util.List;

@EqualsAndHashCode(callSuper = true)
@Data
@NoArgsConstructor
@AllArgsConstructor
@SuperBuilder
@JsonIgnoreProperties(ignoreUnknown = true)
public class TemplateMessageData extends QuotedMessage{
    private String namespace;
    private String elementName;
    private String contentText;
    private String footer;
    private List buttons;
    private boolean isForwarded;
    private Long forwardingScore;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy