it.auties.whatsapp.model.action.DeleteMessageForMeAction 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
package it.auties.whatsapp.model.action;
import it.auties.protobuf.base.ProtobufProperty;
import it.auties.whatsapp.util.Clock;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.experimental.Accessors;
import lombok.extern.jackson.Jacksonized;
import java.time.ZonedDateTime;
import static it.auties.protobuf.base.ProtobufType.BOOL;
import static it.auties.protobuf.base.ProtobufType.INT64;
/**
* A model clas that represents a message deleted for this client
*/
@AllArgsConstructor(staticName = "of")
@Data
@Builder
@Jacksonized
@Accessors(fluent = true)
public final class DeleteMessageForMeAction implements Action {
/**
* Whether the media should be removed from the memory of the client
*/
@ProtobufProperty(index = 1, type = BOOL)
private boolean deleteMedia;
/**
* The timestamp of the message
*/
@ProtobufProperty(index = 2, type = INT64)
private long messageTimestampSeconds;
/**
* Returns when the deleted message was sent
*
* @return an optional
*/
public ZonedDateTime messageTimestamp() {
return Clock.parseSeconds(messageTimestampSeconds);
}
/**
* The name of this action
*
* @return a non-null string
*/
@Override
public String indexName() {
return "deleteMessageForMe";
}
}