it.auties.whatsapp.model.poll.PollAdditionalMetadata Maven / Gradle / Ivy
package it.auties.whatsapp.model.poll;
import it.auties.protobuf.annotation.ProtobufMessageName;
import it.auties.protobuf.annotation.ProtobufProperty;
import it.auties.protobuf.model.ProtobufMessage;
import it.auties.protobuf.model.ProtobufType;
/**
* A model class that represents additional metadata about a {@link it.auties.whatsapp.model.message.standard.PollCreationMessage}
*/
@ProtobufMessageName("PollAdditionalMetadata")
public record PollAdditionalMetadata(
@ProtobufProperty(index = 1, type = ProtobufType.BOOL)
boolean pollInvalidated
) implements ProtobufMessage {
}