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

it.auties.whatsapp.model.business.BusinessPrivacyStatus Maven / Gradle / Ivy

package it.auties.whatsapp.model.business;

import it.auties.protobuf.annotation.ProtobufEnum;
import it.auties.protobuf.annotation.ProtobufEnumIndex;

/**
 * The constants of this enumerated type describe the various types of business privacy
 */
@ProtobufEnum(name = "WebMessageInfo.BizPrivacyStatus")
public enum BusinessPrivacyStatus {
    /**
     * End-to-end encryption
     */
    E2EE(0),
    /**
     * Bsp encryption
     */
    BSP(1),
    /**
     * Facebook encryption
     */
    FACEBOOK(2),
    /**
     * Facebook and bsp encryption
     */
    BSP_AND_FB(3);

    final int index;

    BusinessPrivacyStatus(@ProtobufEnumIndex int index) {
        this.index = index;
    }

    public int index() {
        return index;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy