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

it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredDateTimeUnixEpochBuilder Maven / Gradle / Ivy

package it.auties.whatsapp.model.button.template.highlyStructured;

public class HighlyStructuredDateTimeUnixEpochBuilder {
    private long timestampSeconds;

    public HighlyStructuredDateTimeUnixEpochBuilder() {
        timestampSeconds = 0l;
    }

    public HighlyStructuredDateTimeUnixEpochBuilder timestampSeconds(long timestampSeconds) {
        this.timestampSeconds = timestampSeconds;
        return this;
    }

    public it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredDateTimeUnixEpoch build() {
        return new it.auties.whatsapp.model.button.template.highlyStructured.HighlyStructuredDateTimeUnixEpoch(timestampSeconds);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy