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

it.auties.whatsapp.model.message.button.InteractiveResponseMessage Maven / Gradle / Ivy

The newest version!
package it.auties.whatsapp.model.message.button;

import it.auties.protobuf.base.ProtobufName;
import it.auties.protobuf.base.ProtobufProperty;
import it.auties.whatsapp.model.info.ContextInfo;
import it.auties.whatsapp.model.interactive.InteractiveBody;
import it.auties.whatsapp.model.message.model.ContextualMessage;
import it.auties.whatsapp.model.message.model.MessageCategory;
import it.auties.whatsapp.model.message.model.MessageType;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import lombok.experimental.SuperBuilder;
import lombok.extern.jackson.Jacksonized;

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

@AllArgsConstructor
@Data
@Jacksonized
@SuperBuilder
@Accessors(fluent = true)
@EqualsAndHashCode(callSuper = true)
@ProtobufName("InteractiveResponseMessage")
public final class InteractiveResponseMessage extends ContextualMessage {
    @ProtobufProperty(index = 1, name = "body", type = MESSAGE)
    private InteractiveBody body;

    @ProtobufProperty(index = 2, name = "nativeFlowResponseMessage", type = MESSAGE)
    private NativeFlowResponseMessage nativeFlowResponseMessage;

    @ProtobufProperty(index = 15, name = "contextInfo", type = MESSAGE)
    private ContextInfo contextInfo;

    @Override
    public MessageType type() {
        return MessageType.INTERACTIVE_RESPONSE;
    }

    @Override
    public MessageCategory category() {
        return MessageCategory.BUTTON;
    }

    public InteractiveMessageContentType interactiveResponseMessageType() {
        return InteractiveMessageContentType.COLLECTION;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy