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

it.auties.whatsapp.model.action.QuickReplyAction Maven / Gradle / Ivy

The newest version!
package it.auties.whatsapp.model.action;

import it.auties.protobuf.base.ProtobufProperty;
import it.auties.whatsapp.binary.BinaryPatchType;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.experimental.Accessors;
import lombok.extern.jackson.Jacksonized;

import java.util.List;

import static it.auties.protobuf.base.ProtobufType.*;

/**
 * A model clas that represents the addition or deletion of a quick reply
 */
@AllArgsConstructor
@Data
@Builder
@Jacksonized
@Accessors(fluent = true)
public final class QuickReplyAction implements Action {
    /**
     * The shortcut for this reply
     */
    @ProtobufProperty(index = 1, type = STRING)
    private String shortcut;

    /**
     * The full reply
     */
    @ProtobufProperty(index = 2, type = STRING)
    private String message;

    /**
     * The keywords for this reply
     */
    @ProtobufProperty(index = 3, type = STRING, repeated = true)
    private List keywords;

    /**
     * The count for this reply
     */
    @ProtobufProperty(index = 4, type = INT32)
    private int count;

    /**
     * Whether this quick reply was deleted
     */
    @ProtobufProperty(index = 5, type = BOOL)
    private boolean deleted;

    /**
     * The name of this action
     *
     * @return a non-null string
     */
    @Override
    public String indexName() {
        return "quick_reply";
    }

    /**
     * The version of this action
     *
     * @return a non-null string
     */
    @Override
    public int actionVersion() {
        return 2;
    }

    /**
     * The type of this action
     *
     * @return a non-null string
     */
    @Override
    public BinaryPatchType actionType() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy