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

it.auties.whatsapp.model.call.CallStatus Maven / Gradle / Ivy

package it.auties.whatsapp.model.call;

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

@ProtobufEnum
public enum CallStatus {
    RINGING(0),
    ACCEPTED(1),
    REJECTED(2),
    TIMED_OUT(3);

    final int index;

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

    public int index() {
        return index;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy