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

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

There is a newer version: 0.0.7
Show newest version
package it.auties.whatsapp.model.action;

import it.auties.protobuf.annotation.ProtobufMessageName;
import it.auties.protobuf.annotation.ProtobufProperty;
import it.auties.protobuf.model.ProtobufType;
import it.auties.whatsapp.model.sync.PatchType;

import java.util.Optional;

/**
 * A model clas that represents a new contact push name
 */
@ProtobufMessageName("SyncActionValue.ContactAction")
public record ContactAction(
        @ProtobufProperty(index = 1, type = ProtobufType.STRING)
        Optional fullName,
        @ProtobufProperty(index = 2, type = ProtobufType.STRING)
        Optional firstName,
        @ProtobufProperty(index = 3, type = ProtobufType.STRING)
        Optional lidJid
) implements Action {
    /**
     * Returns the name of this contact
     *
     * @return an optional
     */
    public Optional name() {
        return fullName.or(this::firstName);
    }

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

    /**
     * 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 PatchType actionType() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy