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

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

package it.auties.whatsapp.model.sync;

public class AppStateSyncKeyDataBuilder {
    private byte[] keyData;
    private it.auties.whatsapp.model.sync.AppStateSyncKeyFingerprint fingerprint;
    private java.lang.Long timestamp;

    public AppStateSyncKeyDataBuilder() {
        keyData = null;
        fingerprint = null;
        timestamp = null;
    }

    public AppStateSyncKeyDataBuilder keyData(byte[] keyData) {
        this.keyData = keyData;
        return this;
    }

    public AppStateSyncKeyDataBuilder fingerprint(it.auties.whatsapp.model.sync.AppStateSyncKeyFingerprint fingerprint) {
        this.fingerprint = fingerprint;
        return this;
    }

    public AppStateSyncKeyDataBuilder timestamp(java.lang.Long timestamp) {
        this.timestamp = timestamp;
        return this;
    }

    public it.auties.whatsapp.model.sync.AppStateSyncKeyData build() {
        return new it.auties.whatsapp.model.sync.AppStateSyncKeyData(keyData, fingerprint, timestamp);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy