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

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

package it.auties.whatsapp.model.sync;

public class KeyExpirationBuilder {
    private java.lang.Integer expiredKeyEpoch;

    public KeyExpirationBuilder() {
        expiredKeyEpoch = null;
    }

    public KeyExpirationBuilder expiredKeyEpoch(java.lang.Integer expiredKeyEpoch) {
        this.expiredKeyEpoch = expiredKeyEpoch;
        return this;
    }

    public it.auties.whatsapp.model.sync.KeyExpiration build() {
        return new it.auties.whatsapp.model.sync.KeyExpiration(expiredKeyEpoch);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy