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

it.auties.whatsapp.model.sync.AppStateSyncKeyFingerprintBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.sync;

public class AppStateSyncKeyFingerprintBuilder {
    private java.lang.Integer rawId;
    private java.lang.Integer currentIndex;
    private java.util.List deviceIndexes;

    public AppStateSyncKeyFingerprintBuilder() {
        rawId = null;
        currentIndex = null;
        deviceIndexes = it.auties.protobuf.builtin.ProtobufRepeatedMixin.newList();
    }

    public AppStateSyncKeyFingerprintBuilder rawId(java.lang.Integer rawId) {
        this.rawId = rawId;
        return this;
    }

    public AppStateSyncKeyFingerprintBuilder currentIndex(java.lang.Integer currentIndex) {
        this.currentIndex = currentIndex;
        return this;
    }

    public AppStateSyncKeyFingerprintBuilder deviceIndexes(java.util.List deviceIndexes) {
        this.deviceIndexes = deviceIndexes;
        return this;
    }

    public it.auties.whatsapp.model.sync.AppStateSyncKeyFingerprint build() {
        return new it.auties.whatsapp.model.sync.AppStateSyncKeyFingerprint(rawId, currentIndex, deviceIndexes);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy