it.auties.whatsapp.model.action.ChatAssignmentOpenedStatusAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whatsappweb4j Show documentation
Show all versions of whatsappweb4j Show documentation
Standalone fully-featured Whatsapp Web API for Java and Kotlin
The newest version!
package it.auties.whatsapp.model.action;
import it.auties.protobuf.base.ProtobufName;
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 static it.auties.protobuf.base.ProtobufType.BOOL;
/**
* A model clas that represents the assignment of a chat as opened
*/
@AllArgsConstructor
@Data
@Accessors(fluent = true)
@Jacksonized
@Builder
@ProtobufName("ChatAssignmentOpenedStatusAction")
public final class ChatAssignmentOpenedStatusAction implements Action {
/**
* Whether the chat was opened
*/
@ProtobufProperty(index = 1, name = "chatOpened", type = BOOL)
private boolean chatOpened;
/**
* The name of this action
*
* @return a non-null string
*/
@Override
public String indexName() {
return "agentChatAssignmentOpenedStatus";
}
/**
* The version of this action
*
* @return a non-null string
*/
@Override
public int actionVersion() {
return 7;
}
/**
* The type of this action
*
* @return a non-null string
*/
@Override
public BinaryPatchType actionType() {
return null;
}
}