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

it.auties.whatsapp.model.action.RemoveRecentStickerActionBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.action;

public class RemoveRecentStickerActionBuilder {
    private long lastStickerSentTimestampSeconds;

    public RemoveRecentStickerActionBuilder() {
        lastStickerSentTimestampSeconds = 0l;
    }

    public RemoveRecentStickerActionBuilder lastStickerSentTimestampSeconds(long lastStickerSentTimestampSeconds) {
        this.lastStickerSentTimestampSeconds = lastStickerSentTimestampSeconds;
        return this;
    }

    public it.auties.whatsapp.model.action.RemoveRecentStickerAction build() {
        return new it.auties.whatsapp.model.action.RemoveRecentStickerAction(lastStickerSentTimestampSeconds);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy